Mercedes C4 Arıza Tespit Cihazı / Doipli
Mercedes C4 Arıza Tespit Cihazı, Yetkili servisin kullandığı Mercedes (Binek, Hafif Ticari ve Ağır Vasıta), Mitsubishi Fuso, Smart, Maybach ve BharatBenz marka araçlarda Arıza Tespit yapabilmeniz için imal edilmiş bir Arıza Tespit Cihazıdır.
Mercedes C4 Arıza Tespit Cihazı - DoIP Destekli Servis Ekipmanı
/* Mercedes C4 Arıza Tespit Cihazı sayfası için özel stiller */
.mercedes-c4-page {
/* Daha modern ve premium renk paleti */
--primary: #0055a5; /* Mercedes mavi tonu */
--primary-dark: #004080;
--primary-light: #4a90e2;
--secondary: #242c3a; /* Koyu lacivert */
--accent: #ffb100; /* Altın/sarı aksan renk */
--light-bg: #f5f7fa;
--gradient-bg: linear-gradient(135deg, #f5f7fa, #e9edf5);
--text-dark: #1e2436;
--text-light: #5a6681;
--shadow-color: rgba(0, 85, 165, 0.25);
--success: #4caf50; /* Daha canlı ve açık bir yeşil renk */
--success-dark: #3b8c3f; /* Daha canlı yeşilin koyu tonu */
--danger: #ff0000; /* Uyarı rengi */
font-family: 'Outfit', sans-serif !important;
font-size: 20px !important;
color: var(--text-dark);
margin: 0;
padding: 0;
text-align: center; /* Tüm sayfa içeriğini ortalı yapar */
}
.mercedes-c4-page * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.mercedes-c4-page .banner-container {
position: relative;
width: 100%;
min-height: 100vh;
background: var(--gradient-bg);
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem 0 5rem;
}
.mercedes-c4-page .banner-content-wrapper {
display: flex;
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
z-index: 10;
justify-content: space-between;
align-items: flex-end;
}
.mercedes-c4-page .banner-text {
flex: 0 0 45%;
padding-right: 3rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
max-width: 600px;
}
.mercedes-c4-page .banner-image {
flex: 0 0 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}
.mercedes-c4-page .product-img {
max-width: 85%;
height: auto;
filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
transform: perspective(1000px) rotateY(-8deg);
transition: transform 0.3s ease;
margin-bottom: 20px;
cursor: pointer;
}
.mercedes-c4-page .product-img:hover {
transform: perspective(1000px) rotateY(0deg) scale(1.05);
}
.mercedes-c4-page .gallery-thumbs {
display: flex;
gap: 10px;
justify-content: center;
margin-top: 15px;
flex-wrap: wrap;
max-width: 320px;
margin-left: auto;
margin-right: auto;
background-color: rgba(255, 255, 255, 0.7);
padding: 10px;
border-radius: 10px;
box-shadow: 0 3px 12px rgba(0,0,0,0.08);
position: relative;
z-index: 20;
}
.mercedes-c4-page .gallery-thumb {
width: 60px;
height: 60px;
border-radius: 6px;
overflow: hidden;
cursor: pointer;
border: 2px solid transparent;
transition: all 0.3s ease;
opacity: 0.7;
background-color: white;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.mercedes-c4-page .gallery-thumb:hover {
opacity: 1;
transform: translateY(-2px);
border-color: var(--primary);
}
.mercedes-c4-page .gallery-thumb.active {
border-color: var(--primary);
opacity: 1;
}
.mercedes-c4-page .gallery-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.mercedes-c4-page .banner-title {
color: var(--text-dark);
font-size: 3.2rem;
font-weight: 800;
margin-bottom: 1.5rem;
letter-spacing: -1px;
line-height: 1.1;
width: 100%;
text-align: center;
}
.mercedes-c4-page .highlight {
color: var(--primary);
position: relative;
display: inline-block;
}
.mercedes-c4-page .highlight:after {
content: "";
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 8px;
background-color: rgba(0, 85, 165, 0.1);
z-index: -1;
}
.mercedes-c4-page .banner-subtitle {
color: var(--text-light);
font-size: 1.1rem;
font-weight: 400;
margin-bottom: 2.5rem;
line-height: 1.6;
width: 100%;
text-align: center;
}
.mercedes-c4-page .features-list {
display: flex;
flex-wrap: wrap;
margin-bottom: 2.5rem;
gap: 1.2rem;
width: 100%;
justify-content: center;
}
.mercedes-c4-page .feature-item {
display: flex;
align-items: center;
width: 100%;
margin-bottom: 0.7rem;
justify-content: center;
text-align: center;
}
.mercedes-c4-page .feature-icon {
color: var(--primary);
margin-right: 1rem;
font-size: 1.2rem;
}
.mercedes-c4-page .feature-text {
font-size: 1rem;
color: var(--text-light);
font-weight: 500;
}
.mercedes-c4-page .cta-container {
display: flex;
gap: 1.5rem;
align-items: center;
width: 100%;
justify-content: center;
margin-top: 1rem;
}
.mercedes-c4-page .cta-button {
display: inline-block;
padding: 1.2rem 3rem;
background-color: var(--primary);
color: white;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
border-radius: 50px;
letter-spacing: 1px;
text-transform: uppercase;
transition: all 0.3s ease;
box-shadow: 0 8px 20px var(--shadow-color);
position: relative;
overflow: hidden;
}
.mercedes-c4-page .cta-button:before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: 0.5s;
}
.mercedes-c4-page .cta-button:hover {
background-color: var(--primary-dark);
transform: translateY(-3px);
box-shadow: 0 12px 25px rgba(0, 85, 165, 0.4);
}
.mercedes-c4-page .cta-button:hover:before {
left: 100%;
}
.mercedes-c4-page .cta-secondary {
display: inline-block;
padding: 1.2rem 3rem;
background-color: var(--success);
color: white;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
border-radius: 50px;
letter-spacing: 1px;
text-transform: uppercase;
transition: all 0.3s ease;
box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
position: relative;
overflow: hidden;
}
.mercedes-c4-page .cta-secondary:before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: 0.5s;
}
.mercedes-c4-page .cta-secondary:hover {
background-color: var(--success-dark);
transform: translateY(-3px);
box-shadow: 0 12px 25px rgba(76, 175, 80, 0.4);
}
.mercedes-c4-page .cta-secondary:hover:before {
left: 100%;
}
.mercedes-c4-page .cta-secondary i {
margin-left: 0.5rem;
}
.mercedes-c4-page .decor-circle {
position: absolute;
border-radius: 50%;
background: linear-gradient(135deg, rgba(0, 85, 165, 0.07), rgba(255, 255, 255, 0));
z-index: 0;
}
.mercedes-c4-page .circle-1 {
width: 500px;
height: 500px;
top: -150px;
left: -150px;
}
.mercedes-c4-page .circle-2 {
width: 700px;
height: 700px;
bottom: -250px;
right: -250px;
background: linear-gradient(135deg, rgba(0, 85, 165, 0.04), rgba(255, 255, 255, 0));
}
.mercedes-c4-page .circle-3 {
width: 300px;
height: 300px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: radial-gradient(circle, rgba(0, 85, 165, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
}
/* Ürün bilgileri stili */
.mercedes-c4-page .product-info {
margin-top: 25px;
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.mercedes-c4-page .product-info-item {
display: flex;
align-items: center;
gap: 10px;
background-color: rgba(255, 255, 255, 0.7);
padding: 8px 15px;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 500;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
white-space: nowrap;
}
.mercedes-c4-page .product-info-item i {
color: var(--primary);
font-size: 1rem;
}
/* Özel Orijinal Mercedes-Benz ürünü vurgusu */
.mercedes-c4-page .product-info-item.original {
background: linear-gradient(135deg, rgba(0, 85, 165, 0.1), rgba(255, 255, 255, 0.8));
border: 1px solid rgba(0, 85, 165, 0.2);
padding: 10px 20px;
font-weight: 600;
box-shadow: 0 5px 15px rgba(0, 85, 165, 0.15);
}
.mercedes-c4-page .product-info-item.original i {
color: var(--accent);
font-size: 1.1rem;
}
.mercedes-c4-page .software-notice {
margin-top: 20px;
padding: 15px 20px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
max-width: 450px;
text-align: left;
border: 1px solid rgba(0, 85, 165, 0.1);
box-shadow: 0 4px 15px rgba(0, 85, 165, 0.08);
position: relative;
z-index: 20;
}
.mercedes-c4-page .software-notice i {
font-size: 1.8rem;
color: var(--primary);
}
.mercedes-c4-page .software-notice p {
font-size: 0.9rem;
color: var(--text-dark);
line-height: 1.5;
margin: 0;
}
.mercedes-c4-page .software-notice p strong {
font-weight: 700;
}
.mercedes-c4-page .vat-notice {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
width: 100%;
text-align: center;
z-index: 15;
}
.mercedes-c4-page .vat-notice p {
font-size: 0.9rem;
color: var(--text-light);
font-weight: 500;
margin: 0;
line-height: 1.5;
background-color: rgba(255, 255, 255, 0.5);
display: inline-block;
padding: 0.5rem 1.5rem;
border-radius: 50px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* Lightbox styles */
.mercedes-c4-lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
display: none;
justify-content: center;
align-items: center;
z-index: 100;
flex-direction: column;
}
.mercedes-c4-lightbox.active {
display: flex;
}
.mercedes-c4-lightbox .lightbox-img {
max-width: 80%;
max-height: 80vh;
object-fit: contain;
}
.mercedes-c4-lightbox .lightbox-close {
position: absolute;
top: 20px;
right: 20px;
color: white;
font-size: 2rem;
cursor: pointer;
}
.mercedes-c4-lightbox .lightbox-nav {
display: flex;
justify-content: space-between;
width: 80%;
margin-top: 20px;
}
.mercedes-c4-lightbox .lightbox-nav button {
background-color: transparent;
border: none;
color: white;
font-size: 2rem;
cursor: pointer;
padding: 0 15px;
opacity: 0.7;
transition: opacity 0.3s;
}
.mercedes-c4-lightbox .lightbox-nav button:hover {
opacity: 1;
}
/* YENİ MODERN ÜRÜN DETAY SAYFASI TASARIMI - GÜNCELLENEN DÜZEN */
.product-details-modern {
background-color: #fff;
font-family: 'Outfit', sans-serif;
color: #2c3e50;
padding: 0;
overflow: hidden;
text-align: center;
}
/* Ana Bölüm - 360 Görünüm Solda Metin Sağda */
.product-details-section {
background: linear-gradient(90deg, #f8f9fa 0%, #ebeef2 100%);
padding: 100px 0;
position: relative;
}
.product-details-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTQ0MCAxMDI0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiPjxwYXRoIGQ9Ik0wIDBoMTQ0MHYxMDI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE0NDAgMEwwIDEwMjRMMCAwaDE0NDB6IiBmaWxsPSJyZ2JhKDAsODUsMTY1LDAuMDIpIi8+PC9zdmc+');
opacity: 0.5;
z-index: 1;
}
.details-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
z-index: 2;
padding: 0 20px;
}
.details-3d-view {
flex: 0 0 45%;
margin-right: 5%;
}
.details-content {
flex: 0 0 50%;
text-align: center;
}
.details-badge {
display: inline-block;
background: linear-gradient(90deg, #0055a5, #003d75);
color: white;
font-size: 12px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
padding: 8px 15px;
border-radius: 30px;
margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(0, 85, 165, 0.2);
}
.details-title {
font-size: 2.2rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 20px;
line-height: 1.2;
text-align: center;
}
.details-title span {
color: #0055a5;
position: relative;
}
.details-title span::after {
content: '';
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 8px;
background-color: rgba(0, 85, 165, 0.1);
z-index: -1;
}
.details-desc {
font-size: 1rem;
line-height: 1.7;
color: #5a6681;
margin-bottom: 30px;
text-align: center;
}
.details-features {
margin-bottom: 40px;
}
.details-feature-item {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
text-align: center;
}
.details-feature-icon {
width: 36px;
height: 36px;
background-color: rgba(0, 85, 165, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
flex-shrink: 0;
}
.details-feature-icon i {
color: #0055a5;
font-size: 16px;
}
.details-feature-text {
font-size: 1rem;
color: #2c3e50;
font-weight: 500;
}
.details-3d-container {
background-color: white;
border-radius: 15px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
padding: 0;
padding-top: 100%; /* 1:1 Aspect Ratio */
height: 0;
}
.details-3d-container::before {
content: '';
position: absolute;
top: -10px;
right: -10px;
width: 70px;
height: 70px;
background-color: #0055a5;
border-radius: 0 0 0 70px;
z-index: 0;
}
.details-3d-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 8px;
border: none;
}
.details-3d-badge {
position: absolute;
top: 15px;
right: 15px;
background: rgba(0, 85, 165, 0.8);
color: white;
font-size: 12px;
font-weight: 700;
padding: 5px 10px;
border-radius: 20px;
z-index: 2;
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.details-3d-label {
display: flex;
align-items: center;
justify-content: center;
margin-top: 15px;
font-size: 14px;
font-weight: 600;
color: #2c3e50;
}
.details-3d-label i {
margin-right: 8px;
color: #0055a5;
animation: spin 2s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
/* YENİ ULTRA PREMIUM TEKNİK ÖZELLİKLER BÖLÜMÜ */
.tech-specs-section {
position: relative;
overflow: hidden;
padding: 120px 0;
background: linear-gradient(135deg, #eef2f7, #ffffff);
color: var(--text-dark);
}
.tech-specs-overlay {
display: none;
}
.tech-specs-container {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 10;
padding: 0 20px;
}
.tech-specs-mb-logo {
width: 80px;
height: 80px;
margin: 0 auto 30px;
position: relative;
}
.tech-specs-mb-logo img {
width: 100%;
height: 100%;
object-fit: contain;
}
.tech-specs-mb-logo::after {
content: '';
position: absolute;
width: 120px;
height: 120px;
border: 1px solid rgba(255,255,255,0.1);
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: pulse-slow 3s infinite;
}
@keyframes pulse-slow {
0% {
transform: translate(-50%, -50%) scale(1);
opacity: 0.3;
}
50% {
transform: translate(-50%, -50%) scale(1.2);
opacity: 0.1;
}
100% {
transform: translate(-50%, -50%) scale(1);
opacity: 0.3;
}
}
.tech-specs-heading {
text-align: center;
margin-bottom: 70px;
position: relative;
}
.tech-specs-title {
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 25px;
position: relative;
display: inline-block;
color: var(--text-dark);
}
.tech-specs-title::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, rgba(0,85,165,0), #0055a5, rgba(0,85,165,0));
}
.tech-specs-subtitle {
font-size: 1.1rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}
.tech-specs-tabs {
display: flex;
justify-content: center;
margin-bottom: 50px;
gap: 10px;
flex-wrap: wrap;
}
.tech-specs-tab {
background: rgba(0, 85, 165, 0.05);
border: 1px solid rgba(0, 85, 165, 0.1);
color: var(--text-dark);
padding: 12px 25px;
border-radius: 50px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.tech-specs-tab:hover {
background: rgba(0, 85, 165, 0.1);
transform: translateY(-3px);
}
.tech-specs-tab.active {
background: #0055a5;
border-color: #0055a5;
box-shadow: 0 10px 20px rgba(0,85,165,0.3);
color: white;
}
.tech-specs-tab.active::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
animation: shimmer 2s infinite;
}
@keyframes shimmer {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
}
.tech-specs-tab-content {
display: none;
}
.tech-specs-tab-content.active {
display: block;
animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Modern 3D Kart Tasarımı - Büyütülmüş boyutlar */
.tech-specs-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 35px; /* 30px'den 35px'e artırıldı */
margin-bottom: 70px;
}
.tech-spec-card {
position: relative;
perspective: 1500px;
display: flex;
flex-direction: column;
}
.tech-spec-card-inner {
position: relative;
width: 100%;
transition: transform 0.8s;
transform-style: preserve-3d;
border-radius: 15px;
box-shadow: 0 15px 35px rgba(0,0,0,0.2);
display: grid;
flex-grow: 1;
}
.tech-spec-card:hover .tech-spec-card-inner {
transform: rotateY(180deg);
}
.tech-spec-card-front, .tech-spec-card-back {
grid-area: 1 / 1;
width: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
border-radius: 15px;
overflow: hidden;
padding: 45px 35px; /* Dikey padding artırıldı */
}
.tech-spec-card-front {
background: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
border: 1px solid rgba(0,0,0,0.05);
}
.tech-spec-card-back {
background: #fdfdff;
transform: rotateY(180deg);
display: flex;
flex-direction: column;
justify-content: center;
border: 1px solid rgba(0,0,0,0.05);
}
.tech-spec-icon-wrap {
width: 100px; /* 90px'den 100px'e artırıldı */
height: 100px; /* 90px'den 100px'e artırıldı */
background: linear-gradient(135deg, rgba(0,85,165,0.3), rgba(0,85,165,0.1));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30px; /* 25px'den 30px'e artırıldı */
position: relative;
}
.tech-spec-icon-wrap::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
border: 1px solid rgba(255,255,255,0.2);
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 0.5;
}
50% {
transform: scale(1.2);
opacity: 0.2;
}
100% {
transform: scale(1);
opacity: 0.5;
}
}
.tech-spec-icon {
font-size: 40px; /* 36px'den 40px'e artırıldı */
color: #0055a5;
background: linear-gradient(135deg, #4a90e2, #0055a5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.tech-spec-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 18px; /* 15px'den 18px'e artırıldı */
color: var(--text-dark);
}
.tech-spec-subtitle {
font-size: 1rem;
color: var(--text-light);
margin-bottom: 22px; /* 20px'den 22px'e artırıldı */
}
.tech-spec-data {
font-size: 14px;
color: var(--text-light);
margin-bottom: 15px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.tech-spec-data i {
color: #0055a5;
font-size: 16px;
}
.tech-spec-back-title {
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 25px; /* 20px'den 25px'e artırıldı */
color: var(--text-dark);
position: relative;
padding-bottom: 15px;
text-align: center;
}
.tech-spec-back-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 2px;
background: #0055a5;
}
.tech-spec-details {
list-style: none;
}
.tech-spec-detail-item {
margin-bottom: 18px; /* 15px'den 18px'e artırıldı */
position: relative;
padding-left: 25px;
color: var(--text-light);
font-size: 1rem;
text-align: left;
}
.tech-spec-detail-item::before {
content: 'f00c';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
left: 0;
top: 2px;
color: #0055a5;
font-size: 12px;
}
.tech-spec-back-badge {
position: absolute;
top: 20px;
right: 20px;
background: rgba(0,85,165,0.2);
color: #4a90e2;
font-size: 11px;
font-weight: 600;
padding: 5px 10px;
border-radius: 20px;
border: 1px solid rgba(0,85,165,0.3);
}
/* Flip Hint Text - Varsayılan olarak görünür, hover'da kaybolacak şekilde */
.tech-spec-card::after {
content: 'Daha fazla bilgi için tıklayınız';
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
color: white;
font-size: 12px;
width: 90%;
text-align: center;
opacity: 1; /* Varsayılan olarak görünür */
transition: opacity 0.3s ease;
background: rgba(0, 85, 165, 0.7);
padding: 5px 0;
border-radius: 20px;
font-weight: 600;
text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.tech-spec-card:hover::after {
opacity: 0; /* Hover durumunda kaybolacak */
}
/* Teknik Özellik Slider - Alt Bölüm */
.tech-specs-highlights {
margin-top: 70px;
position: relative;
}
.tech-specs-slider-container {
overflow: hidden;
position: relative;
padding: 30px 0;
}
.tech-specs-slider {
display: flex;
gap: 30px;
position: relative;
animation: autoSlide 20s linear infinite;
}
@keyframes autoSlide {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-100%);
}
}
.tech-specs-slider-container:hover .tech-specs-slider {
animation-play-state: paused;
}
.tech-spec-highlight-item {
flex: 0 0 auto;
background: #ffffff;
border: 1px solid rgba(0,0,0,0.05);
border-radius: 10px;
padding: 20px;
min-width: 250px;
display: flex;
align-items: center;
gap: 15px;
transition: all 0.3s ease;
}
.tech-spec-highlight-item:hover {
background: #ffffff;
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 85, 165, 0.1);
}
.tech-spec-highlight-icon {
width: 45px;
height: 45px;
background: linear-gradient(135deg, rgba(0,85,165,0.2), rgba(0,85,165,0.1));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.tech-spec-highlight-icon i {
font-size: 20px;
color: #4a90e2;
}
.tech-spec-highlight-content {
text-align: left;
}
.tech-spec-highlight-title {
font-size: 1rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 5px;
}
.tech-spec-highlight-desc {
font-size: 0.9rem;
color: var(--text-light);
}
/* Neden C4 Bölümü - YENİ TASARIM */
.why-c4-section-new {
padding: 120px 0;
background: #ffffff;
}
.why-c4-container-new {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
text-align: center;
}
.why-c4-heading-new {
margin-bottom: 70px;
}
.why-c4-heading-new .section-subtitle {
color: var(--primary);
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
font-size: 0.9rem;
}
.why-c4-heading-new .section-title {
font-size: 2.2rem;
font-weight: 700;
color: var(--text-dark);
margin-top: 10px;
margin-bottom: 25px;
position: relative;
display: inline-block;
}
.why-c4-heading-new .section-title::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, rgba(0,85,165,0), #0055a5, rgba(0,85,165,0));
}
.why-c4-heading-new .section-desc {
color: var(--text-light);
max-width: 700px;
margin: 40px auto 0;
font-size: 1.1rem;
line-height: 1.7;
}
.why-c4-features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
margin-bottom: 70px;
/* text-align: left; kaldırıldı */
}
.why-c4-feature-item {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 25px;
}
.why-c4-feature-icon {
flex-shrink: 0;
width: 60px;
height: 60px;
background: linear-gradient(135deg, rgba(0, 85, 165, 0.1), rgba(0, 85, 165, 0.05));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
}
.why-c4-feature-icon i {
font-size: 26px;
color: var(--primary);
}
.why-c4-feature-title {
font-size: 1.25rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 10px;
}
.why-c4-feature-desc {
font-size: 1rem;
color: var(--text-light);
line-height: 1.7;
}
.why-c4-summary {
max-width: 800px;
margin: 0 auto;
padding: 30px;
background: var(--gradient-bg);
border-radius: 15px;
border: 1px solid rgba(0, 85, 165, 0.1);
}
.why-c4-summary p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-light);
margin: 0;
}
.why-c4-summary strong {
color: var(--text-dark);
font-weight: 700;
}
.section-separator {
border: 0;
height: 1px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
margin: 80px 0;
}
/* Kullanım Alanları */
.product-usage-section {
padding: 120px 0;
background: linear-gradient(135deg, #eef2f7, #ffffff);
}
.usage-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.usage-heading {
text-align: center;
margin-bottom: 70px;
}
.usage-heading .section-subtitle {
color: var(--primary);
font-weight: 600;
letter-spacing: 1px;
}
.usage-heading .section-title {
font-size: 2.2rem;
font-weight: 700;
color: var(--text-dark);
margin-top: 10px;
margin-bottom: 25px;
position: relative;
display: inline-block;
}
.usage-heading .section-title::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(90deg, rgba(0,85,165,0), #0055a5, rgba(0,85,165,0));
}
.usage-heading .section-desc {
color: var(--text-light);
max-width: 700px;
margin: 40px auto 0;
}
.usage-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.usage-item {
background-color: #ffffff;
border-radius: 15px;
padding: 35px 30px;
box-shadow: 0 10px 40px rgba(0, 85, 165, 0.08);
transition: all 0.3s ease;
text-align: center;
border: 1px solid rgba(0, 85, 165, 0.1);
display: flex;
flex-direction: column;
justify-content: space-between;
}
.usage-item:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 85, 165, 0.15);
}
.usage-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, rgba(0, 85, 165, 0.1), rgba(0, 85, 165, 0.05));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
flex-shrink: 0;
}
.usage-icon i {
font-size: 28px;
color: var(--primary);
}
.usage-title {
font-size: 1.25rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 15px;
}
.usage-desc {
font-size: 1rem;
color: var(--text-light);
line-height: 1.7;
}
.support-grid {
display: grid;
gap: 30px;
margin-top: 50px;
grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
.support-grid {
grid-template-columns: 1fr;
}
}
/* Detaylı Açıklama Bölümü */
.product-description-section {
padding: 100px 0;
background: #f8f9fa;
}
.description-container {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}
.description-heading {
text-align: center;
margin-bottom: 50px;
}
.description-title {
font-size: 2.2rem;
font-weight: 700;
color: #1e2436;
margin-bottom: 20px;
text-align: center;
}
.price-notice {
background-color: #fff;
border: 2px solid #ff0000;
border-radius: 10px;
padding: 20px;
margin-bottom: 40px;
text-align: center;
}
.price-notice p {
color: #ff0000;
font-size: 18px;
font-weight: 700;
margin: 0;
text-align: center;
}
.hardware-notice {
background-color: #e9f5ff;
border: 2px solid #0055a5;
border-radius: 10px;
padding: 20px;
margin-bottom: 40px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}
.hardware-notice i {
font-size: 24px;
color: #0055a5;
}
.hardware-notice p {
color: #0055a5;
font-size: 16px;
font-weight: 600;
margin: 0;
}
.description-content {
background-color: #fff;
border-radius: 15px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
margin-bottom: 40px;
text-align: center;
}
.description-content p {
font-size: 1rem;
line-height: 1.8;
color: #5a6681;
margin-bottom: 20px;
text-align: center;
}
.description-content p:last-child {
margin-bottom: 0;
}
.description-content p strong {
color: #1e2436;
font-weight: 600;
}
.description-content a {
color: #0055a5;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.description-content a:hover {
color: #4caf50;
text-decoration: underline;
}
.features-section {
background-color: #fff;
border-radius: 15px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
text-align: center;
}
.features-title {
font-size: 1.5rem;
font-weight: 700;
color: #1e2436;
margin-bottom: 30px;
text-align: center;
}
.features-list-two-col {
column-count: 2;
column-gap: 40px;
list-style: none;
text-align: center;
}
.features-list-two-col li {
break-inside: avoid;
margin-bottom: 15px;
padding-left: 25px;
position: relative;
color: #5a6681;
font-size: 1rem;
line-height: 1.6;
text-align: center;
}
.features-list-two-col li::before {
content: '*';
position: absolute;
left: 0;
top: 0;
color: #0055a5;
font-weight: 700;
}
.features-list-two-col li strong {
color: #1e2436;
}
/* Paket İçeriği Bölümü - YENİ TASARIM */
.product-package-section {
padding: 100px 0;
background: var(--gradient-bg); /* Arka planı ana temayla uyumlu hale getir */
}
.package-container {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
text-align: center;
}
.package-heading {
margin-bottom: 60px;
}
.package-title {
font-size: 2.2rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 20px;
}
.package-subtitle {
font-size: 1.1rem;
color: var(--text-light);
max-width: 700px;
margin: 0 auto;
}
.package-card {
display: flex;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 20px 50px rgba(0, 85, 165, 0.15);
overflow: hidden;
align-items: stretch; /* Kolonların eşit yükseklikte olmasını sağlar */
border: 1px solid rgba(0, 85, 165, 0.1);
}
.package-image-container {
flex: 1;
padding: 30px;
background: linear-gradient(135deg, #f5f7fa, #e9edf5);
display: flex;
align-items: center;
justify-content: center;
}
.package-image-container img {
max-width: 100%;
height: auto;
border-radius: 15px;
object-fit: contain;
transform: scale(1.05);
transition: transform 0.3s ease;
}
.package-image-container img:hover {
transform: scale(1.1);
}
.package-list-container {
flex: 1;
padding: 50px 40px;
text-align: left;
display: flex;
flex-direction: column;
justify-content: center;
}
.package-list-title {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 30px;
position: relative;
padding-bottom: 10px;
}
.package-list-title::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background-color: var(--primary);
}
.package-list {
list-style: none;
padding: 0;
}
.package-list li {
font-size: 1.1rem;
color: var(--text-dark);
margin-bottom: 1.5rem;
display: flex;
align-items: center;
font-weight: 500;
}
.package-list li:last-child {
margin-bottom: 0;
}
.package-list li i {
color: var(--primary);
font-size: 1.4rem;
margin-right: 15px;
width: 25px;
text-align: center;
}
/* Sıkça Sorulan Sorular Bölümü */
.faq-section {
padding: 120px 0;
background: var(--gradient-bg);
}
.faq-container {
max-width: 800px;
margin: 0 auto;
padding: 0 20px;
}
.faq-heading {
text-align: center;
margin-bottom: 60px;
}
.faq-title {
font-size: 2.2rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 20px;
}
.faq-subtitle {
font-size: 1.1rem;
color: var(--text-light);
}
.faq-accordion {
display: flex;
flex-direction: column;
gap: 20px;
}
.faq-item {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0, 85, 165, 0.1);
overflow: hidden;
border: 1px solid rgba(0, 85, 165, 0.15);
}
.faq-question {
width: 100%;
padding: 20px 25px;
display: flex;
justify-content: space-between;
align-items: center;
background: none;
border: none;
text-align: left;
font-size: 1.1rem;
font-weight: 600;
color: var(--text-dark);
cursor: pointer;
transition: background-color 0.3s;
}
.faq-question:hover {
background-color: rgba(0, 85, 165, 0.05);
}
.faq-question i {
transition: transform 0.3s ease;
font-size: 1rem;
color: var(--primary);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-answer p {
padding: 0 25px 20px;
font-size: 1rem;
line-height: 1.7;
color: var(--text-light);
text-align: left;
}
.faq-item.active .faq-question i {
transform: rotate(180deg);
}
.faq-item.active .faq-answer {
max-height: 500px; /* Cevap uzunluğuna göre ayarlandı */
}
/* 360 Görüntü İyileştirmeleri - YENİ */
/* Tablet ve altı için */
@media (max-width: 992px) {
}
/* Dikey tablet ve mobil için */
@media (max-width: 768px) {
}
/* Küçük mobil cihazlar için */
@media (max-width: 576px) {
}
/* Çok küçük mobil cihazlar için */
@media (max-width: 420px) {
}
/* Responsive Tasarım - Geliştirilmiş Mobil Uyumluluk */
@media (max-width: 1200px) {
.mercedes-c4-page .banner-title {
font-size: 2.8rem;
}
.details-container {
padding: 0 40px;
}
.features-list-two-col {
column-count: 1;
}
}
@media (max-width: 992px) {
.package-card {
flex-direction: column;
}
.mercedes-c4-page .banner-content-wrapper {
flex-direction: column;
gap: 3rem;
padding-bottom: 80px; /* Alttaki uyarı için boşluk artırıldı */
}
.mercedes-c4-page .banner-text,
.mercedes-c4-page .banner-image {
flex: 0 0 100%;
width: 100%;
max-width: 600px;
padding-right: 0;
}
.mercedes-c4-page .banner-title {
font-size: 2.5rem;
}
.mercedes-c4-page .banner-subtitle {
font-size: 1.1rem;
}
.details-container {
flex-direction: column;
gap: 50px;
}
.details-3d-view, .details-content {
flex: 0 0 100%;
width: 100%;
margin-right: 0;
}
.details-3d-view {
order: 2;
}
.details-content {
order: 1;
}
.usage-grid {
grid-template-columns: 1fr;
}
.tech-specs-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.why-c4-features-grid {
grid-template-columns: 1fr;
gap: 30px;
}
/* C4-C6 karşılaştırma bölümü mobilde alt alta */
.usage-grid[style*="grid-template-columns: 1fr 1fr"] {
grid-template-columns: 1fr !important;
gap: 30px !important;
}
}
/* İyileştirilmiş Mobil Görünüm için CSS Güncellemeleri */
@media (max-width: 768px) {
.mercedes-c4-page .banner-content-wrapper,
.details-container,
.usage-container,
.tech-specs-container,
.why-c4-container,
.package-container,
.faq-container,
.description-container {
padding-left: 1rem;
padding-right: 1rem;
}
.mercedes-c4-page .banner-container {
padding: 3rem 0 5rem;
}
.mercedes-c4-page .banner-title {
font-size: 2.2rem;
}
.mercedes-c4-page .banner-subtitle {
font-size: 1rem;
margin-bottom: 1.5rem;
}
.mercedes-c4-page .product-img {
max-width: 100%;
transform: none;
}
.mercedes-c4-page .product-img:hover {
transform: scale(1.03);
}
.mercedes-c4-page .gallery-thumbs {
max-width: 280px;
}
.mercedes-c4-page .gallery-thumb {
width: 50px;
height: 50px;
}
.mercedes-c4-page .product-info {
gap: 10px;
}
.mercedes-c4-page .product-info-item {
padding: 6px 12px;
font-size: 0.8rem;
}
.mercedes-c4-page .product-info-item.original {
padding: 8px 15px;
}
.product-details-section {
padding: 60px 0;
}
.details-title {
font-size: 2rem;
}
.section-title {
font-size: 1.8rem;
}
.description-content, .features-section {
padding: 25px 20px;
}
.product-usage-section,
.product-description-section {
padding: 60px 0;
}
.specs-details-title,
.features-title {
font-size: 1.4rem;
}
.description-title {
font-size: 1.8rem;
}
.description-content p {
font-size: 1rem;
text-align: center;
}
.package-list-container {
padding: 40px 30px;
}
.package-list-title {
font-size: 1.3rem;
}
.package-list li {
font-size: 1rem;
}
.mercedes-c4-page .software-notice {
max-width: 100%;
flex-direction: column;
text-align: center;
gap: 10px;
padding: 15px;
}
/* Mobilde teknik özellikler bölümü için iyileştirmeler */
.tech-specs-grid {
grid-template-columns: 1fr;
gap: 30px;
padding: 0;
}
.tech-spec-card {
height: auto;
min-height: 340px;
margin: 0 auto;
max-width: 450px;
}
.tech-spec-card-front, .tech-spec-card-back {
padding: 30px 25px;
}
.tech-spec-icon-wrap {
width: 85px;
height: 85px;
margin-bottom: 25px;
}
.tech-spec-title {
font-size: 1.4rem;
margin-bottom: 15px;
}
.tech-spec-subtitle {
font-size: 1rem;
margin-bottom: 18px;
line-height: 1.5;
}
.tech-spec-data {
margin-bottom: 12px;
}
.tech-spec-back-title {
font-size: 1.3rem;
margin-bottom: 20px;
}
.tech-spec-detail-item {
margin-bottom: 15px;
font-size: 1rem;
line-height: 1.4;
}
.tech-spec-card::after {
font-size: 11px;
padding: 4px 0;
width: 80%;
left: 50%;
transform: translateX(-50%);
bottom: 12px;
}
/* Mobilde slider daha geniş bir alanı kaplar */
.tech-specs-highlights {
display: none;
}
.tech-spec-highlight-icon {
width: 40px;
height: 40px;
}
.tech-spec-highlight-title {
font-size: 1rem;
}
.tech-spec-highlight-desc {
font-size: 0.9rem;
}
}
@media (max-width: 576px) {
.mercedes-c4-page .banner-title {
font-size: 2rem;
}
.mercedes-c4-page .feature-text {
font-size: 0.9rem;
}
.mercedes-c4-page .vat-notice p {
font-size: 0.8rem;
}
.details-title {
font-size: 1.8rem;
}
.details-desc {
font-size: 1rem;
}
.details-badge {
font-size: 10px;
padding: 6px 12px;
}
.details-feature-text {
font-size: 14px;
}
.section-title {
font-size: 1.6rem;
}
.section-desc {
font-size: 1rem;
}
.usage-item {
padding: 20px 15px;
}
.usage-icon {
width: 60px;
height: 60px;
}
.usage-icon i {
font-size: 24px;
}
.usage-title {
font-size: 1.2rem;
}
.usage-desc {
font-size: 0.9rem;
}
.features-list-two-col li {
font-size: 0.9rem;
margin-bottom: 12px;
text-align: center;
}
.price-notice p {
font-size: 1rem;
}
.mercedes-c4-lightbox .lightbox-img {
max-width: 90%;
}
.mercedes-c4-lightbox .lightbox-nav {
width: 90%;
}
.mercedes-c4-lightbox .lightbox-close {
top: 10px;
right: 10px;
font-size: 1.8rem;
}
.mercedes-c4-lightbox .lightbox-nav button {
font-size: 1.8rem;
}
/* Küçük ekranlar için teknik özellikler iyileştirmeleri */
.tech-specs-section {
padding: 70px 0;
}
.tech-spec-card {
min-height: 320px;
max-width: 90%;
}
.tech-spec-card-front, .tech-spec-card-back {
padding: 25px 20px;
}
.tech-spec-icon-wrap {
width: 75px;
height: 75px;
margin-bottom: 20px;
}
.tech-spec-icon {
font-size: 30px;
}
.tech-spec-title {
font-size: 1.3rem;
margin-bottom: 12px;
}
.tech-spec-subtitle {
font-size: 0.9rem;
margin-bottom: 15px;
}
.tech-spec-back-title {
font-size: 1.2rem;
margin-bottom: 18px;
padding-bottom: 12px;
}
.tech-spec-detail-item {
font-size: 0.9rem;
margin-bottom: 12px;
padding-left: 22px;
}
.tech-spec-detail-item::before {
font-size: 11px;
}
.tech-specs-tab {
padding: 8px 15px;
font-size: 13px;
margin-bottom: 5px;
}
/* Daha kompakt slider görünümü */
.tech-spec-highlight-item {
min-width: 200px;
padding: 12px;
gap: 10px;
}
.tech-spec-highlight-icon {
width: 35px;
height: 35px;
}
.tech-spec-highlight-icon i {
font-size: 16px;
}
}
/* Çok küçük ekranlar için */
@media (max-width: 420px) {
.mercedes-c4-page {
margin: 0;
}
.mercedes-c4-page .banner-title {
font-size: 1.8rem;
}
.mercedes-c4-page .banner-subtitle {
font-size: 0.9rem;
}
.mercedes-c4-page .gallery-thumbs {
max-width: 240px;
gap: 8px;
}
.mercedes-c4-page .gallery-thumb {
width: 45px;
height: 45px;
}
.mercedes-c4-page .product-info-item {
padding: 5px 10px;
font-size: 0.75rem;
}
/* Çok küçük ekranlar için teknik özellikler iyileştirmeleri */
.tech-spec-card {
min-height: 300px;
max-width: 100%;
}
.tech-spec-card-front, .tech-spec-card-back {
padding: 20px 15px;
}
.tech-spec-icon-wrap {
width: 65px;
height: 65px;
margin-bottom: 15px;
}
.tech-spec-icon {
font-size: 26px;
}
.tech-spec-title {
font-size: 1.2rem;
}
.tech-spec-subtitle {
font-size: 0.8rem;
}
.tech-spec-data {
font-size: 0.8rem;
}
.tech-spec-data i {
font-size: 14px;
}
.tech-spec-detail-item {
font-size: 0.8rem;
padding-left: 20px;
margin-bottom: 10px;
}
.tech-spec-detail-item::before {
font-size: 10px;
}
.tech-specs-tabs {
margin-bottom: 35px;
}
.tech-specs-tab {
padding: 6px 12px;
font-size: 12px;
}
/* Daha küçük ekranlar için daha kompakt slider */
.tech-spec-highlight-item {
min-width: 180px;
padding: 10px;
}
}
.software-grid {
grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
.software-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.software-grid {
grid-template-columns: 1fr;
}
}
.support-title {
font-size: 1.1rem;
}
.support-desc {
font-size: 0.9rem;
}
.general-features-section {
padding: 100px 0;
background: #ffffff;
}
.general-features-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
text-align: center;
}
.general-features-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
@media (max-width: 1200px) {
.general-features-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 992px) {
.general-features-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.general-features-grid {
grid-template-columns: 1fr;
}
}
.feature-card {
background: #f5f7fa;
border-radius: 15px;
padding: 30px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid rgba(0, 85, 165, 0.1);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 85, 165, 0.15);
}
.feature-card-header {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}
.feature-card-icon {
font-size: 1.2rem;
color: var(--primary);
}
.feature-card-title {
font-size: 0.9rem;
font-weight: 600;
color: var(--text-dark);
}
/* Önemli vurgu rengi */
.highlight-primary {
color: var(--primary) !important;
font-weight: 700 !important;
}
/* Software Image Styles */
.software-image-container {
width: 100%;
height: 150px;
margin-bottom: 20px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 85, 165, 0.1);
}
.software-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.software-image:hover {
transform: scale(1.05);
}
/* 360° Video Bölümü Stilleri - GÜNCELLENMİŞ TASARIM */
.video-360-section {
padding: 120px 0;
background: linear-gradient(160deg, #eef2f7 0%, #ffffff 100%);
position: relative;
overflow: hidden;
}
.video-360-section::before {
content: '';
position: absolute;
top: -100px;
left: -100px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(0, 85, 165, 0.05), transparent 70%);
}
.video-360-section::after {
content: '';
position: absolute;
bottom: -150px;
right: -150px;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(0, 85, 165, 0.07), transparent 70%);
}
.video-360-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 2;
}
.video-360-heading {
text-align: center;
margin-bottom: 70px;
}
.video-360-heading .section-title {
font-size: 2.4rem;
}
.video-360-content {
display: grid;
grid-template-columns: 1fr 420px;
gap: 60px;
align-items: center;
}
.video-360-player {
position: relative;
transition: transform 0.3s ease;
}
.video-360-player:hover {
transform: scale(1.02);
}
.video-container {
position: relative;
width: 100%;
padding-top: 56.25%; /* 16:9 Aspect Ratio */
background-color: #000;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 85, 165, 0.15), 0 30px 60px rgba(0, 85, 165, 0.2);
border: 3px solid #fff;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.video-360-badge {
position: absolute;
top: 20px;
right: 20px;
background: rgba(0, 85, 165, 0.85);
color: white;
font-size: 13px;
font-weight: 600;
padding: 8px 18px;
border-radius: 50px;
backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.25);
z-index: 10;
display: flex;
align-items: center;
gap: 8px;
}
.video-360-info {
display: flex;
flex-direction: column;
gap: 30px;
}
.video-info-card {
background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
border-radius: 20px;
padding: 30px;
box-shadow: 0 15px 40px rgba(0, 85, 165, 0.1);
border: 1px solid rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
text-align: left;
}
.video-info-card h3 {
font-size: 1.3rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 25px;
position: relative;
padding-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
}
.video-info-card h3::before {
content: 'f005'; /* Yıldız ikonu */
font-family: 'Font Awesome 5 Free';
font-weight: 900;
color: var(--accent);
font-size: 1.1rem;
}
.video-info-card h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background: var(--primary);
border-radius: 3px;
}
.video-features-list {
list-style: none;
padding: 0;
margin: 0;
}
.video-features-list li {
display: flex;
align-items: center;
margin-bottom: 15px;
font-size: 1rem;
color: var(--text-light);
font-weight: 500;
}
.video-features-list li:last-child {
margin-bottom: 0;
}
.video-features-list li i {
color: var(--primary);
margin-right: 15px;
font-size: 1.1rem;
width: 24px;
height: 24px;
text-align: center;
background-color: rgba(0, 85, 165, 0.1);
border-radius: 50%;
line-height: 24px;
}
.quality-indicators {
display: flex;
flex-direction: column;
gap: 15px;
}
.quality-item {
display: flex;
align-items: center;
gap: 15px;
}
.quality-item i {
color: var(--primary);
font-size: 1.2rem;
width: 24px;
text-align: center;
}
.quality-item span {
font-size: 1rem;
color: var(--text-dark);
font-weight: 600;
}
/* Responsive tasarım için video bölümü */
@media (max-width: 992px) {
.video-360-content {
grid-template-columns: 1fr;
gap: 40px;
}
.video-360-info {
order: -1;
}
.video-info-card {
padding: 20px;
}
}
@media (max-width: 768px) {
.video-360-section {
padding: 80px 0;
}
.video-360-container {
padding: 0 15px;
}
.video-360-content {
gap: 30px;
}
.video-360-badge {
font-size: 11px;
padding: 6px 12px;
top: 10px;
right: 10px;
}
.video-info-card {
padding: 15px;
}
.video-info-card h3 {
font-size: 1.1rem;
margin-bottom: 15px;
}
.video-features-list li {
font-size: 0.9rem;
margin-bottom: 10px;
}
.quality-item span {
font-size: 0.9rem;
}
}
/* YENİ CİHAZ İNCELEME BÖLÜMÜ */
.exploded-view-section {
padding: 120px 0;
background-color: #111;
color: #fff;
overflow: hidden;
position: relative;
}
.exploded-view-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(0, 85, 165, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 85, 165, 0.1) 75%),
linear-gradient(-45deg, rgba(0, 85, 165, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 85, 165, 0.1) 75%);
background-size: 50px 50px;
opacity: 0.3;
}
.exploded-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: center;
gap: 50px;
}
.exploded-text-content {
flex: 1;
text-align: left;
z-index: 2;
}
.exploded-text-content h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 20px;
color: #fff;
}
.exploded-text-content h2 span {
color: var(--primary-light);
}
.exploded-text-content p {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 30px;
line-height: 1.7;
}
.exploded-tabs {
display: flex;
flex-direction: column;
gap: 15px;
}
.exploded-tab {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 15px 20px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
text-align: left;
}
.exploded-tab:hover, .exploded-tab.active {
background: rgba(0, 85, 165, 0.3);
border-color: var(--primary-light);
}
.exploded-tab h3 {
font-size: 1.1rem;
font-weight: 600;
color: #fff;
margin: 0;
}
.exploded-image-content {
flex: 1.2;
position: relative;
height: 500px;
}
.exploded-layer {
position: absolute;
width: 100%;
height: 100%;
transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
display: flex;
justify-content: center;
align-items: center;
}
.exploded-layer img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}
.exploded-view-section.show-layer-1 .layer-1 { transform: translate(0, 0) scale(1); opacity: 1; z-index: 4; }
.exploded-view-section.show-layer-1 .layer-2 { transform: translate(40px, -40px) scale(0.95); opacity: 0.5; z-index: 3; }
.exploded-view-section.show-layer-1 .layer-3 { transform: translate(80px, -80px) scale(0.9); opacity: 0.3; z-index: 2; }
.exploded-view-section.show-layer-1 .layer-4 { transform: translate(120px, -120px) scale(0.85); opacity: 0.1; z-index: 1; }
.exploded-view-section.show-layer-2 .layer-1 { transform: translate(-40px, 40px) scale(0.95); opacity: 0.5; z-index: 3; }
.exploded-view-section.show-layer-2 .layer-2 { transform: translate(0, 0) scale(1); opacity: 1; z-index: 4; }
.exploded-view-section.show-layer-2 .layer-3 { transform: translate(40px, -40px) scale(0.95); opacity: 0.5; z-index: 3; }
.exploded-view-section.show-layer-2 .layer-4 { transform: translate(80px, -80px) scale(0.9); opacity: 0.3; z-index: 2; }
.exploded-view-section.show-layer-3 .layer-1 { transform: translate(-80px, 80px) scale(0.9); opacity: 0.3; z-index: 2; }
.exploded-view-section.show-layer-3 .layer-2 { transform: translate(-40px, 40px) scale(0.95); opacity: 0.5; z-index: 3; }
.exploded-view-section.show-layer-3 .layer-3 { transform: translate(0, 0) scale(1); opacity: 1; z-index: 4; }
.exploded-view-section.show-layer-3 .layer-4 { transform: translate(40px, -40px) scale(0.95); opacity: 0.5; z-index: 3; }
.exploded-view-section.show-layer-4 .layer-1 { transform: translate(-120px, 120px) scale(0.85); opacity: 0.1; z-index: 1; }
.exploded-view-section.show-layer-4 .layer-2 { transform: translate(-80px, 80px) scale(0.9); opacity: 0.3; z-index: 2; }
.exploded-view-section.show-layer-4 .layer-3 { transform: translate(-40px, 40px) scale(0.95); opacity: 0.5; z-index: 3; }
.exploded-view-section.show-layer-4 .layer-4 { transform: translate(0, 0) scale(1); opacity: 1; z-index: 4; }
@media (max-width: 992px) {
.exploded-container {
flex-direction: column;
}
.exploded-image-content {
height: 400px;
width: 100%;
margin-top: 40px;
}
}
/* YENİ Teknik Özellikler Bölümü (VAS Tasarımı) */
.specs-v2-section {
padding: 100px 0;
background-color: #f8f9fc;
position: relative;
overflow: hidden;
}
.specs-v2-section::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(0, 85, 165, 0.05), transparent 70%);
transform: translate(50%, -50%);
}
.specs-v2-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
text-align: center;
}
.specs-v2-header {
margin-bottom: 60px;
}
.specs-v2-header .badge {
display: inline-block;
background-color: rgba(0, 85, 165, 0.1);
color: var(--primary);
padding: 8px 15px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 15px;
}
.specs-v2-header h2 {
font-size: 2.5rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 15px;
}
.specs-v2-header p {
font-size: 1.1rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}
.specs-v2-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 40px;
align-items: center;
text-align: left;
}
.specs-v2-left h3, .specs-v2-right h3 {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 25px;
text-align: center;
}
.specs-v2-video-card {
background-color: #fff;
border-radius: 15px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 85, 165, 0.08);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 300px;
margin-bottom: 20px;
}
.specs-v2-video-card .play-icon {
width: 70px;
height: 70px;
background-color: rgba(0, 85, 165, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.specs-v2-video-card .play-icon i {
color: var(--primary);
font-size: 24px;
}
.specs-v2-video-card p {
color: var(--text-light);
font-weight: 500;
}
.specs-v2-info-box {
background-color: rgba(0, 85, 165, 0.05);
border-radius: 15px;
padding: 20px;
font-size: 0.95rem;
color: var(--text-light);
text-align: center;
}
.specs-v2-features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.specs-v2-feature-card {
background-color: #fff;
border-radius: 15px;
padding: 25px;
box-shadow: 0 10px 30px rgba(0, 85, 165, 0.08);
border: 1px solid #fff;
transition: all 0.3s ease;
text-align: center;
}
.specs-v2-feature-card:hover {
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: 0 15px 35px rgba(0, 85, 165, 0.12);
}
.specs-v2-feature-card .icon {
font-size: 1.8rem;
color: var(--primary);
margin-bottom: 15px;
}
.specs-v2-feature-card h4 {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 10px;
}
.specs-v2-feature-card p {
font-size: 0.9rem;
color: var(--text-light);
line-height: 1.6;
}
.specs-v2-feature-card p strong {
color: var(--text-dark);
font-weight: 600;
}
@media (max-width: 992px) {
.specs-v2-grid {
grid-template-columns: 1fr;
}
.specs-v2-features-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.specs-v2-features-grid {
grid-template-columns: 1fr;
}
}
/* Fiyat Bilgilendirme Bölümü */
.price-info-section {
padding: 100px 0;
background: #f8f9fa;
}
.price-info-container {
max-width: 900px;
margin: 0 auto;
padding: 40px;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
text-align: center;
}
.price-info-container .section-title {
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 40px;
position: relative;
display: inline-block;
color: var(--text-dark);
}
.price-info-container .section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: var(--text-dark);
border-radius: 2px;
}
.price-info-content {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 40px;
}
.price-info-left {
text-align: left;
}
.vat-warning {
background-color: #fffbe6;
border: 1px solid #ffe58f;
border-radius: 8px;
padding: 25px;
display: flex;
align-items: center;
gap: 15px;
}
.vat-warning i {
color: #faad14;
font-size: 22px;
}
.vat-warning p {
margin: 0;
color: #5a6681;
font-size: 1rem;
line-height: 1.6;
font-weight: 500;
}
.price-info-right {
display: flex;
flex-direction: column;
gap: 25px;
}
.info-items {
display: flex;
justify-content: space-around;
padding-bottom: 25px;
border-bottom: 1px solid #f0f0f0;
}
.info-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
color: var(--text-light);
font-weight: 500;
font-size: 0.9rem;
}
.info-item .info-item-icon-wrapper {
width: 50px;
height: 50px;
background-color: rgba(37, 211, 102, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.info-item i {
font-size: 20px;
color: #25D366;
}
.whatsapp-button {
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #25D366;
color: white;
padding: 15px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
width: 100%;
}
.whatsapp-button:hover {
transform: translateY(-3px);
box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}
.whatsapp-button i {
margin-right: 10px;
font-size: 1.3rem;
}
@media (max-width: 768px) {
.price-info-content {
grid-template-columns: 1fr;
}
.price-info-container {
padding: 30px 20px;
}
}
Mercedes C4
Arıza Tespit Cihazı
Mercedes-Benz C4, DoIP destekli bir Arıza Tespit Cihazıdır. Mercedes binek, ticari ve ağır vasıta araçlarda fabrika kalitesinde tanılama, kodlama ve programlama yapmanızı sağlar. Yeni nesil araçlarla tam uyumludur.
Tüm Mercedes modelleriyle %100 uyumlu
DoIP ile ECU programlama
Yetkili servis düzeyinde teşhis
Yüksek Kalite Ürün
6 Ay Garanti
Servis Tipi Cihaz





Önemli Not: Bu ürün yalnızca donanımı içermektedir. Gerekli yazılımlar ayrıca satın alınmalıdır.
Cihazı 360° İnceleyin
YÜKSEK KALİTE ÜRÜN
DoIP Destekli Arıza Tespit Cihazı C4
Mercedes-Benz ve Maybach araçlar için geliştirilmiş, DoIP destekli, yüksek kaliteli bir Arıza Tespit Cihazıdır. Tüm Mercedes modelleriyle uyumlu çalışır.
Yetkili servis cihazının özelliklerini sunan yüksek kaliteye sahiptir
DoIP desteği ile yüksek hızda veri transferi imkanı sunar
ECU'larda programlama, kodlama ve adaptasyon olanağı tanır
Wi-Fi özelliği sayesinde kablolu veya kablosuz olarak çalışabilir
Euro 6 motora sahip araçlarla uyumlu bir şekilde çalışır
Mercedes C4 Teknik Özellikleri
Mercedes C4 cihazının fiziksel görünümü, tasarım detayları ve teknik özellikleri hakkında kapsamlı bilgiler.
Cihaz Görünümü
Mercedes C4 cihazının fiziksel görünümü, bağlantı portları ve tasarım detayları hakkında detaylı video inceleme.
Teknik Özellikler
Bağlantı Teknolojisi
WiFi kablosuz bağlantı ve Ethernet LAN kablo desteği ile esnek kullanım imkanı.
Protokol Desteği
DoIP, CAN, UDS, ve K-Line gibi tüm güncel Mercedes protokollerini destekler.
Sistem Uyumluluğu
Windows 10/11 (64-bit) işletim sistemi desteği ve Türkçe dil seçeneği.
Dayanıklılık
Sağlam kasa yapısı ile zorlu servis koşullarına dayanıklı profesyonel tasarım.
Araç Uyumluluğu
Mercedes-Benz Grubu (Binek, Ticari, Ağır Vasıta) araçlar için geniş model desteği.
Yazılım Desteği
Xentry, DAS, Vediamo ve DTS Monaco gibi yazılımlarla tam uyumluluk.
Neden C4 Tercih Edilmelidir?
Bu yüksek kaliteli C4 Arıza Tespit Cihazı, servislerin gücünü ve hassasiyetini atölyenize taşıyan eksiksiz bir profesyonel teşhis platformudur.
Yüksek Kalite ve Güvenilir
Yüksek kaliteli bileşenlerle üretilmiş, A+ kalite donanım. Aracınızın hassas elektronik sistemleriyle tam uyumlu ve güvenli iletişim sağlar.
DoIP Teknolojisi
DoIP (Diagnostics over IP) desteği sayesinde en yeni nesil Mercedes modelleriyle yüksek hızda ve stabil bir bağlantı kurar.
Geniş Yazılım Uyumluluğu
Xentry, DAS, Vediamo ve DTS Monaco gibi tüm yetkili servis ve mühendislik yazılımlarıyla çalışarak size tam kontrol ve esneklik sunar.
Kapsamlı Onarım Yeteneği
Standart arıza okuma/silme işlemlerinin çok ötesinde; ECU programlama, adaptasyon ve kalibrasyon gibi ileri düzey işlemleri yapmanızı sağlar.
Piyasadaki düşük kaliteli veya standart multibrand cihazlar, aracınızın tüm sistemlerine erişemez ve kritik işlemlerde güvenlik riski oluşturabilir. Bu yüksek kalite C4 ise, DoIP teknolojisi ile her işlemi servis standartlarında, doğru ve güvenli bir şekilde yapmanızı sağlar. Atölyenizin prestijini ve müşteri memnuniyetini artırmak için en doğru yatırımdır.
Cihazın Genel Özellikleri
Mercedes C4, aracınızın tüm sistemleriyle etkileşime geçerek kapsamlı teşhis ve programlama yetenekleri sunar.
Araç Yapılandırmasını Okuma
Anahtar Kodlama ve Ecu (Beyin) Programlama
Tüm Sistem Parçalarını Aktifleştirme ve Adaptasyon Yapma
Tüm Motor, Şase, Gövde ve Gösterge Modüllerini Kodlama
Modüllerden Hata Kodlarını Okuma ve Silme
Canlı Verileri Görüntüleme
EGR Testi ve DPF (Dizel Partikül Filtre) Rejenerasyonu
Enjektör Kodlama ve Enjektör Testi
Hava Yastığı Modül Active-Deaktive Testi
Otomatik Şanzıman Adaptasyonu
Hız Limit İptali Yapabilme
Ve Daha Fazlası...
CİHAZIN YETENEKLERİ
Profesyonel Çözümler ve Avantajlar
Mercedes-Benz C4 teşhis cihazı, binek, hafif ticari ve ağır vasıta araçların bakım ve onarımında DoIP desteği ile yetkili servis düzeyinde profesyonel çözümler sunar.
Yetkili Servis Düzeyinde Teşhis
Mercedes-Benz araçlarında arıza tespiti, onarım ve bakım işlemlerini fabrika standartlarında gerçekleştirin.
Gelişmiş Kodlama ve Programlama
ECU programlama ve adaptasyon gibi kritik işlemleri güvenle yapın.
Geniş Araç Desteği
DoIP ile en yeni binek, ticari ve ağır vasıta Mercedes modelleriyle tam uyumluluk.
Performans ve Emisyon
DPF rejenerasyonu, AdBlue sistemi yönetimi ve EGR testi gibi işlemleri kolayca yapın.
Kablosuz Esneklik
Wi-Fi ile kablosuz çalışarak hareket özgürlüğü ve verimlilik kazanın.
Kullanıcı Dostu Arayüz
Türkçe dil desteği ve sezgisel Xentry yazılımı ile işlemleri hızlı ve hatasız tamamlayın.
YENİ MODELLER İÇİN
Yeni Nesil Mercedes Modelleri İçin C6 Önerimiz
2023 ve sonrası üretilen son model Mercedes araçlarıyla çalışmak istiyorsanız, daha gelişmiş C6 Arıza Tespit Cihazını tercih etmenizi öneririz.
Mercedes C4 Arıza Tespit Cihazı
Yaygın kullanımdaki Mercedes modelleri için ideal çözüm. C, E, S sınıfı, ticari ve ağır vasıta araçlarla mükemmel uyum sağlar.
Bu sayfada tanıttığımız ürün
Mercedes C6 Arıza Tespit Cihazı
En yeni nesil Mercedes modelleri için geliştirilmiş teknoloji. Gelişmiş DoIP desteği ve güncel yazılım uyumluluğu ile yeni çıkan Mercedes araçlarında sorunsuz çalışır.
Önemli Bilgi: Eğer en yeni nesil Mercedes araçlarıyla çalışmayı planlıyorsanız, C6 Arıza Tespit Cihazı daha uygun bir seçenek olacaktır. C4 cihazı mevcut ve yaygın kullanımdaki Mercedes modelleri için optimize edilmiştir.
Hangi cihazı seçeceğinizden emin değilseniz: Çalışacağınız araç modellerini belirleyerek size en uygun cihaz önerisini alabilirsiniz.
YAZILIM UYUMLULUĞU
Geniş Yazılım Desteği
Mercedes C4 Arıza Tespit Cihazı, aracınızla tam potansiyelde iletişim kurabilmeniz için en güncel ve kapsamlı yazılımlarla uyumlu çalışır.

Xentry Diagnosis
Yeni nesil Mercedes-Benz araçları için kullanılan, güncel ve detaylı teşhis yazılımıdır.

DAS
Daha eski model Mercedes-Benz araçları için kullanılan temel teşhis yazılımıdır.

WIS/ASRA
Onarım, bakım ve devre şeması bilgilerini içeren atölye bilgi sistemidir.

EPC
Mercedes-Benz araçlarının orijinal yedek parça katalogudur.

Vediamo
Mühendislik seviyesinde geliştirme ve kodlama için kullanılır.

DTS
Mühendislik seviyesinde geliştirme ve kodlama için kullanılır.
Cihazınızın donanım özelliklerinden tam olarak faydalanmak için doğru yazılım konfigürasyonu kritik öneme sahiptir. Uyumlu yazılım paketleri ve kurulum hizmetleri hakkında bilgi almak için Mercedes yazılımlarını inceleyebilirsiniz.
Önemli Bilgilendirme: Bu ürün yalnızca donanımı içermekte olup, yazılım pakete dahil değildir. Cihazın işlevselliği için gerekli yazılımları ayrıca temin etmeniz gerekmektedir.
Fiyat Bilgilendirme
Fiyatlara KDV dahil değildir. KDV'siz özel fiyat için satış danışmanımızla iletişime geçin.
Özel İndirimler
Fiyat Hesaplama
Kişisel Destek
WhatsApp ile İletişim
Kutu İçeriği
Mercedes C4 Arıza Tespit Cihazı setinizde, profesyonel teşhis için gereken tüm donanımlar eksiksiz olarak yer almaktadır.

Setin İçindekiler:
- Mercedes C4 Arıza Tespit Cihazı
- OBD-II Bağlantı Kablosu
- Ethernet LAN Kablosu
Sıkça Sorulan Sorular
Mercedes C4 Arıza Tespit Cihazı hakkında merak edilenler.
Yazılım Pakete Dahil midir?
Bu ilan yalnızca Mercedes C4 Arıza Tespit Cihazının donanımını kapsamaktadır. Cihazın tam fonksiyonel olarak çalışabilmesi için Xentry, DAS gibi Mercedes-Benz teşhis yazılımlarının ayrıca yüklenmesi gerekmektedir. Uyumlu yazılım paketlerimiz ve detaylı bilgi için Mercedes yazılımlarını inceleyebilirsiniz.
DoIP Desteği Nedir ve Ne İşe Yarar?
DoIP (Diagnostics over Internet Protocol), yeni nesil Mercedes-Benz araçlarında kullanılan gelişmiş bir iletişim protokolüdür. Bu teknoloji, Ethernet üzerinden çok daha hızlı veri transferi sağlayarak, özellikle 2016 sonrası üretilen modellerdeki karmaşık sistemlere tam eri��im ve daha hızlı teşhis imkanı sunar.
Euro 3, 4, 5, 6 Emisyon Standartlarını Destekler mi?
Evet, Mercedes C4 arıza tespit cihazı Euro 3, Euro 4, Euro 5 ve Euro 6 emisyon standartlarının tamamını desteklemektedir. Euro 3 (2000-2005) araçlarda teşhis, hata kodu okuma/silme ve temel programlama işlemleri yapabilirsiniz. Euro 4 (2005-2010) araçlarda gelişmiş teşhis, ECU programlama ve emisyon sistemi testleri mümkündür. Euro 5 (2010-2015) araçlarda DPF rejenerasyonu, AdBlue sistemi testleri ve kapsamlı ECU programlama yapabilirsiniz. Euro 6 (2015+) araçlarda ise DoIP desteği ile yüksek hızda teşhis, gelişmiş AdBlue sistemi yönetimi ve detaylı emisyon kontrolü gerçekleştirebilirsiniz.
Ağır Vasıta Araçlarla (Kamyon, Otobüs, Çekici) Çalışır mı?
Evet, Mercedes C4 arıza tespit cihazı tüm Mercedes ağır vasıta araçlarını tam olarak desteklemektedir. Kamyonlar: Actros, Arocs, Antos, Atego serisi kamyonlarda motor, şanzıman, fren sistemi, AdBlue ve tüm elektronik sistemlerde teşhis ve programlama yapabilirsiniz. Otobüsler: Tourismo, Travego, Citaro otobüsleri ve diğer Mercedes otobüs modellerinde kapsamlı teşhis ve kodlama işlemleri gerçekleştirebilirsiniz. Çekiciler: Tüm çekici modellerinde gelişmiş teşhis, programlama ve ağır vasıta özel fonksiyonları yapabilirsiniz. Kumanda kutuları cihazda aktif olarak bulunmaktadır.
Ağır Vasıta için 14 Pin Euro Kablo Gerekir mi ve Nereden Temin Edebilirim?
Ağır vasıta araçlarda (kamyon, otobüs, çekici) bazı modellerde 14 pin Euro kablosuna ihtiyaç duyabilirsiniz. Cihazımız standart olarak 16 pin OBD-II kablosu ile gelir. Ağır vasıta araçlarla çalışacaksanız ve tam fonksiyonlara erişmek istiyorsanız, ayrıca 14 pin Euro kablosu satın almanızı öneririz. Temin: Ağır vasıta Mercedes araçlarınızda kullanmak üzere 14 pin Euro kablosunu firmamızdan temin edebilirsiniz. Yüksek kaliteli ve C4 cihazınızla tam uyumlu olan 14 pin Euro kablomuzu buradan inceleyip satın alabilirsiniz. Kargo ile tüm Türkiye'ye gönderim yapıyoruz.
Hangi Mercedes Modelleriyle Uyumludur?
Mercedes C4 arıza tespit cihazı tüm Mercedes-Benz araç modellerini kapsamlı bir şekilde desteklemektedir. Binek araçlardan ticari araçlara, hafif ticari araçlardan ağır vasıta kamyon ve otobüslere kadar geniş bir araç yelpazesinde kullanabilirsiniz. Ayrıca Maybach lüks araç serisinde de sorunsuz çalışmaktadır. Cihaz, Mercedes-Benz'in tüm araç kategorilerinde etkili teşhis ve programlama işlemleri yapmanızı sağlar.
AdBlue Sistemi Testi Yapabilir mi?
Evet, Mercedes C4 cihazı AdBlue (DEF) sistemi testlerini yapabilir. AdBlue seviye kontrolü, kalite testi, enjektör testi, pompa testi ve sistem temizleme işlemlerini gerçekleştirebilirsiniz. Euro 4, 5, 6 standartlı dizel araçlarda AdBlue sistemi arızalarını tespit edip çözebilirsiniz.
Cihazın Garanti Koşulları Nelerdir?
Cihazımız, fabrikasyon hatalarına karşı 6 ay boyunca garantilidir. Garanti, kullanıcı hatasından kaynaklanan (düşürme, sıvı teması, yanlış voltaj verme vb.) durumları kapsamamaktadır.
Destek ve İletişim
C4 ile ilgili her türlü soru ve destek talebiniz için otoeko.com yanınızda. Size yardımcı olmaktan mutluluk duyarız.
Telefon Desteği
Mesai saatleri içinde teknik destek ve sipariş için telefonla bize ulaşabilirsiniz.
E-posta Desteği
Tüm sorularınız için 7/24 e-posta gönderebilirsiniz, size en kısa sürede dönüş yapacağız.
WhatsApp Destek Hattı
Anlık sorularınız ve hızlı destek için WhatsApp üzerinden bize hemen yazabilirsiniz.
لم يتم طرح أي أسئلة حول هذا المنتج بعد.
كن أول من يسأل!اطرح سؤالاً
لا توجد تقييمات بعد
هل جربت هذا المنتج؟ شارك تجربتك وساعد العملاء الآخرين في اتخاذ القرار الصحيح. سيتم نشر مراجعتك بعد الموافقة.
Türkçe
English
العربية