Panasonic CF-52 ToughBook Endüstriyel Laptop
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px); /* Bounce yüksekliği azaltıldı */
}
}
@keyframes shine {
0% {
left: -100%; /* Başlangıç pozisyonu ayarlandı */
}
100% {
left: 100%; /* Bitiş pozisyonu ayarlandı */
}
}
body {
margin: 0;
padding: 0;
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
overflow-x: hidden;
background-color: #f8f9fa; /* Body arkaplan rengi eklendi */
line-height: 1.6; /* FAQ için eklendi */
color: #5b6c8b; /* FAQ için eklendi */
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
/* Küçük resimler için hover efekti */
.thumbnail:hover img {
transform: scale(1.05);
}
.thumbnail img {
transition: transform 0.3s ease;
cursor: pointer; /* Tıklanabilir olduğunu belirtmek için */
}
/* Aktif küçük resim stili */
.thumbnail.active-thumb {
border: 2px solid #0057a7 !important; /* Daha belirgin kenarlık */
box-shadow: 0 0 8px rgba(0, 87, 167, 0.5);
}
/* Fade-in animasyonu */
.fade-in-section {
opacity: 0;
transform: translateY(30px); /* Başlangıç mesafesi artırıldı */
transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Ease-out eklendi */
}
.fade-in-section.is-visible {
opacity: 1;
transform: translateY(0);
}
/* Feature Badge Hover Effect */
.feature-badge:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0,87,167,0.15);
}
/* Buy Button Hover Effect */
.buy-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,87,167,0.4);
background: linear-gradient(45deg, #004080, #003366); /* Hover rengi koyulaştırıldı */
}
/* Spec Card Hover Effect */
.spec-card:hover {
transform: translateY(-8px); /* Hover efekti eklendi */
box-shadow: 0 15px 40px rgba(0,0,0,0.12); /* Gölge artırıldı */
}
/* FAQ Section Stilleri */
.faq-section .container { /* FAQ için eklendi - Kapsam daraltıldı */
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 2;
}
.faq-section .card { /* FAQ için eklendi - Kapsam daraltıldı */
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 35px rgba(0,30,100,0.1);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
height: 100%; /* Kartların eşit yükseklikte olmasını sağlar */
display: flex; /* İçeriğin dikeyde genişlemesini sağlar */
flex-direction: column; /* İçeriği dikey dizer */
}
.faq-section .card-body { /* FAQ için eklendi - Kapsam daraltıldı */
padding: 30px;
position: relative;
z-index: 2;
flex-grow: 1; /* Body'nin kalan alanı doldurmasını sağlar */
}
.faq-section strong { /* FAQ için eklendi - Kapsam daraltıldı */
color: #0d1e3a;
font-weight: 600;
}
.faq-section ul { /* FAQ için eklendi - Kapsam daraltıldı */
padding-left: 0;
margin: 0;
list-style: none;
}
.faq-section { /* FAQ için eklendi */
padding: 100px 0;
background: linear-gradient(150deg, #f0f6ff 0%, #e6f0ff 100%);
position: relative;
overflow: hidden;
}
.faq-section .particles { /* FAQ için eklendi */
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDEwKSI+PHJlY3QgaWQ9ImJnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJub25lIi8+PGNpcmNsZSBmaWxsPSIjMDA1N2E3IiBmaWxsLW9wYWNpdHk9IjAuMDMiIGN4PSIyMCIgY3k9IjIwIiByPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCBmaWxsPSJ1cmwoI3BhdHRlcm4pIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIi8+PC9zdmc+');
opacity: 0.7;
z-index: 0;
}
.faq-section .bg-shape { /* FAQ için eklendi */
position: absolute;
z-index: 1;
background: linear-gradient(135deg, rgba(0,87,167,0.06), rgba(0,129,255,0.06));
}
.faq-section .bg-shape:nth-of-type(1) { /* FAQ için eklendi */
top: -200px; right: -200px; width: 500px; height: 500px; border-radius: 65% 35% 70% 30% / 55% 25% 75% 45%; transform: rotate(20deg);
}
.faq-section .bg-shape:nth-of-type(2) { /* FAQ için eklendi */
bottom: -200px; left: -200px; width: 600px; height: 600px; border-radius: 40% 60% 30% 70% / 40% 50% 50% 60%;
}
/* Section Header */
.faq-section .section-header { /* FAQ için eklendi - Kapsam daraltıldı */
text-align: center;
margin-bottom: 70px;
}
.faq-section .subtitle-wrap { /* FAQ için eklendi - Kapsam daraltıldı */
position: relative;
display: inline-block;
margin-bottom: 20px;
}
.faq-section .subtitle-glow { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute;
width: 100%;
height: 100%;
background: #0057a7;
filter: blur(15px);
opacity: 0.2;
z-index: -1;
border-radius: 30px;
animation: glow 2s ease-in-out infinite;
}
.faq-section .subtitle { /* FAQ için eklendi - Kapsam daraltıldı */
display: inline-block;
background: linear-gradient(to right, #0057a7, #0080ff);
color: white;
padding: 8px 20px;
border-radius: 30px;
font-size: 15px;
font-weight: 600;
box-shadow: 0 5px 15px rgba(0,87,167,0.2);
letter-spacing: 1px;
text-transform: uppercase;
}
.faq-section .section-header h2 { /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 46px;
font-weight: 800;
color: #0d1e3a;
margin: 0 0 25px;
letter-spacing: -0.5px;
line-height: 1.2;
}
.faq-section .section-header .divider { /* FAQ için eklendi - Kapsam daraltıldı */
width: 90px;
height: 4px;
background: linear-gradient(to right, #0057a7, #0080ff);
margin: 0 auto 25px;
border-radius: 2px;
}
.faq-section .section-header p.description { /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 18px;
line-height: 1.6;
color: #5b6c8b;
max-width: 700px;
margin: 0 auto;
}
/* Grid Layout */
.faq-grid { /* FAQ için eklendi */
display: grid;
grid-template-columns: repeat(2, 1fr); /* 2 sütun */
gap: 30px;
}
.grid-item { /* FAQ için eklendi */
/* Grid item'ları için ek stil gerekirse */
}
/* A Kalite Kartı (Hexagonal) */
.faq-section .hexagon-card .card-header { /* FAQ için eklendi - Kapsam daraltıldı */
position: relative;
height: 120px; /* Yüksekliği sabit tutalım */
background: linear-gradient(135deg, #0057a7, #0080ff);
border-radius: 20px 20px 0 0;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
/* perspective: 1000px; */ /* Efekt için kaldırıldı */
}
.faq-section .hexagon-card .header-bg { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDEwKSI+PHJlY3QgaWQ9ImJnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJub25lIi8+PHBvbHlnb24gZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjEiIHBvaW50cz0iMjAsMCAxNSwxNSAwLDIwIDE1LDI1IDIwLDQwIDI1LDI1IDQwLDIwIDI1LDE1Ii8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCBmaWxsPSJ1cmwoI3BhdHRlcm4pIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIi8+PC9zdmc+');
opacity: 0.2; /* transform: translateZ(-50px); */ transition: all 0.5s ease;
}
.faq-section .hexagon-card .spotlight { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; width: 200%; height: 200%;
background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 80%);
pointer-events: none; opacity: 0; transition: all 0.6s ease;
}
.faq-section .hexagon-card .header-content { /* FAQ için eklendi - Kapsam daraltıldı */
position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
gap: 10px; /* transform: translateZ(20px); */ transition: all 0.3s ease; z-index: 2;
}
.faq-section .hexagon-card .icon-container { position: relative; /* perspective: 1000px; */ } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .hexagon-card .icon-3d-wrapper { /* FAQ için eklendi - Kapsam daraltıldı */
width: 70px; height: 70px; position: relative; /* transform-style: preserve-3d; */
/* transform: rotateY(0deg) rotateX(0deg); */ transition: all 0.6s ease;
}
.faq-section .hexagon-card .icon-bg { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; width: 100%; height: 100%; background: rgba(255,255,255,0.15);
border-radius: 16px; /* transform: translateZ(0); */ box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: all 0.4s ease;
}
.faq-section .hexagon-card .icon { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
/* transform: translateZ(15px); */ transition: all 0.4s ease;
}
.faq-section .hexagon-card .icon i { font-size: 30px; color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.2); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .hexagon-card .title-wrapper { /* perspective: 1000px; transform-style: preserve-3d; */ } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .hexagon-card .title-wrapper h3 { /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 26px; font-weight: 700; color: white; margin: 0;
/* transform: translateZ(10px); */ text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.faq-section .hexagon-list { /* FAQ için eklendi - Kapsam daraltıldı */
position: relative; margin-bottom: 30px; background: #f8f9ff; border-radius: 12px;
padding: 25px; border-left: 4px solid #0057a7; transition: all 0.3s ease;
box-shadow: 0 5px 20px rgba(0,87,167,0.05);
}
.faq-section .hexagon-list .hex-shapes { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; top: 10px; right: 10px; width: 80px; height: 80px; opacity: 0.07;
transform: rotate(30deg); background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxwb2x5Z29uIGZpbGw9IiMwMDU3YTciIHBvaW50cz0iMzAsMCA2MCw0MCAxMDAsNDAgMTMwLDgwIDEwMCwxMjAgNjAsMTIwIDMwLDgwIDAsNDAiLz48L3N2Zz4=');
}
.faq-section .hexagon-list h4 { /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 18px; font-weight: 600; color: #0d1e3a; margin: 0 0 15px;
position: relative; display: flex; align-items: center; gap: 10px;
}
.faq-section .hexagon-list .title-icon { /* FAQ için eklendi - Kapsam daraltıldı */
display: inline-flex; width: 28px; height: 28px; background: #0057a7; border-radius: 8px;
align-items: center; justify-content: center; flex-shrink: 0;
}
.faq-section .hexagon-list .title-icon i { font-size: 14px; color: white; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .check-item { /* FAQ için eklendi - Kapsam daraltıldı */
display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px;
font-size: 15px; color: #5b6c8b; transition: all 0.3s ease; position: relative;
}
.faq-section .check-item:last-child { margin-bottom: 0; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .check-icon { /* FAQ için eklendi - Kapsam daraltıldı */
position: relative; width: 22px; height: 22px; border-radius: 50%; background: rgba(0,87,167,0.1);
display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease;
}
.faq-section .check-icon i { font-size: 10px; color: #0057a7; transition: all 0.3s ease; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .tags-container { display: flex; gap: 10px; flex-wrap: wrap; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .tag { /* FAQ için eklendi - Kapsam daraltıldı */
display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, rgba(0,87,167,0.08), rgba(0,129,255,0.08));
color: #0057a7; padding: 8px 16px; border-radius: 30px; font-size: 13px; font-weight: 600;
transition: all 0.3s ease; cursor: default;
}
.faq-section .tag i { font-size: 11px; transition: all 0.3s ease; } /* FAQ için eklendi - Kapsam daraltıldı */
/* 3 Ay Garanti Kartı (Wavy) */
.faq-section .wavy-card { position: relative; /* Establish stacking context */ } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .wavy-card .wavy-bg { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; top: 0; left: 0; width: 100%; height: 230px;
background: linear-gradient(135deg, #0057a7, #0080ff);
z-index: 1; /* Arka planı içeriğin altına almak için */
}
.faq-section .wavy-card .wavy-bg svg { position: absolute; bottom: -1px; left: 0; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .wavy-card .wavy-bg .particles { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; border-radius: 50%; background: rgba(255,255,255,0.2);
animation: float1 10s infinite ease-in-out;
}
.faq-section .wavy-card .wavy-bg .particles:nth-child(1) { top: 20px; left: 20px; width: 10px; height: 10px; animation-delay: 0s; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .wavy-card .wavy-bg .particles:nth-child(2) { top: 80px; right: 50px; width: 15px; height: 15px; animation: float2 15s infinite ease-in-out; animation-delay: -5s; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .wavy-card .wavy-bg .particles:nth-child(3) { top: 150px; left: 50%; width: 12px; height: 12px; animation: float3 8s infinite ease-in-out; animation-delay: -2s; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .wavy-card .header-content { /* FAQ için eklendi - Kapsam daraltıldı */
padding: 30px; z-index: 3; display: flex; flex-direction: column; /* z-index artırıldı */
align-items: center; text-align: center; gap: 5px; /* İkon ve metin arası boluk */
}
.faq-section .wavy-card .icon-container { /* FAQ için eklendi - Kapsam daraltıldı */
width: 90px; height: 90px; background: white; border-radius: 50%; display: flex;
align-items: center; justify-content: center; /* margin-bottom kaldırıldı, gap ile yönetilecek */
box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: all 0.3s ease;
}
.faq-section .wavy-card .icon-container i { /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 40px; background: linear-gradient(135deg, #0057a7, #0080ff);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: transform 0.3s ease;
}
/* Başlık ve alt başlık stilleri */
.faq-section .wavy-card h3 { /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 26px;
font-weight: 700;
color: #FFFFFF; /* Beyaz renk */
margin: 0;
opacity: 1; /* Tam opaklık */
visibility: visible; /* Görünür */
text-shadow: none; /* Gölgeyi kaldır */
}
.faq-section .wavy-card .header-content p { /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 15px;
color: #FFFFFF; /* Beyaz renk */
margin: 0;
opacity: 1; /* Tam opaklık */
visibility: visible; /* Görünür */
text-shadow: none; /* Gölgeyi kaldır */
/* transition: all 0.3s ease; */ /* Geçiş hala kaldırılmış durumda */
}
.faq-section .steps-container { display: flex; flex-direction: column; gap: 20px; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .step { /* FAQ için eklendi - Kapsam daraltıldı */
display: flex; gap: 15px; align-items: center; transition: all 0.3s ease;
background: linear-gradient(to right, rgba(0,87,167,0.05), rgba(255,255,255,0));
padding: 15px; border-radius: 12px;
}
.faq-section .step-number { /* FAQ için eklendi - Kapsam daraltıldı */
width: 36px; height: 36px; min-width: 36px; background: linear-gradient(135deg, #0057a7, #0080ff);
border-radius: 50%; color: white; font-weight: 700; display: flex; align-items: center; justify-content: center;
box-shadow: 0 5px 15px rgba(0,87,167,0.2); transition: all 0.3s ease;
}
.faq-section .step h4 { font-size: 17px; font-weight: 600; color: #0d1e3a; margin: 0 0 5px; transition: all 0.3s ease; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .step h4 i { color: #0057a7; margin-right: 8px; transition: all 0.3s ease; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .step p { font-size: 14px; line-height: 1.6; color: #5b6c8b; margin: 0; transition: all 0.3s ease; } /* FAQ için eklendi - Kapsam daraltıldı */
/* Ödeme ve Teslimat Kartları (Morph) */
.faq-section .morph-card-container { /* Yeni sarmalayıcı */ /* FAQ için eklendi - Kapsam daraltıldı */
background: white; border-radius: 20px; overflow: hidden;
box-shadow: 0 15px 35px rgba(0,30,100,0.1);
height: 100%; display: flex; flex-direction: column;
}
.faq-section .card-section { flex: 1; padding: 0; position: relative; overflow: hidden; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .payment-section { border-bottom: 1px solid rgba(0,87,167,0.05); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .angled-bg { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; width: 150%; height: 400px; background: linear-gradient(135deg, #0057a7, #0080ff);
transform: rotate(-5deg) translateY(-250px); z-index: 1;
}
.faq-section .floating-shape { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; background: rgba(255,255,255,0.1); z-index: 2;
}
.faq-section .floating-shape:nth-of-type(1) { top: 50px; right: 20px; width: 60px; height: 60px; border-radius: 12px; transform: rotate(45deg); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .floating-shape:nth-of-type(2) { top: 30px; left: 30px; width: 30px; height: 30px; border-radius: 8px; transform: rotate(30deg); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .card-section .section-header { /* Ödeme ve Teslimat içindeki başlıklar */ /* FAQ için eklendi - Kapsam daraltıldı */
position: relative; z-index: 3; padding: 30px; text-align: center;
}
.faq-section .card-section .section-header > div { /* İkon ve metin grubu */ /* FAQ için eklendi - Kapsam daraltıldı */
display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.faq-section .card-section .icon-box { /* FAQ için eklendi - Kapsam daraltıldı */
width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
flex-shrink: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.faq-section .payment-section .icon-box { background: rgba(255,255,255,0.2); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .delivery-section .icon-box { background: linear-gradient(135deg, #0057a7, #0080ff); box-shadow: 0 8px 20px rgba(0,87,167,0.15); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .card-section .icon-box i { font-size: 24px; color: white; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .card-section .section-header h3 { font-size: 24px; font-weight: 700; margin: 0 0 5px; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .payment-section .section-header h3 { color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.1); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .delivery-section .section-header h3 { color: #0d1e3a; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .card-section .section-header p { font-size: 15px; margin: 0; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .payment-section .section-header p { color: rgba(255,255,255,0.9); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .delivery-section .section-header p { color: #5b6c8b; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .delivery-section .section-header p.description { /* Teslimat altındaki açıklama */ /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 15px; line-height: 1.7; color: #5b6c8b; margin: 20px auto 0; max-width: 90%;
}
.faq-section .payment-content { /* FAQ için eklendi - Kapsam daraltıldı */
position: relative; z-index: 3; background: white; border-radius: 20px 20px 0 0;
padding: 30px; margin-top: -20px; box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}
.faq-section .payment-option { margin-bottom: 20px; transition: all 0.3s ease; perspective: 1000px; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .option-card { /* FAQ için eklendi - Kapsam daraltıldı */
background: linear-gradient(to right, #f8f9ff, #f0f6ff); border-radius: 16px; padding: 20px;
position: relative; overflow: hidden; /* transform-style: preserve-3d; */ /* Efekt için kaldırıldı */ transform: translateZ(0);
transition: all 0.4s ease; border: 1px solid rgba(0,87,167,0.08);
}
.faq-section .option-card .card-circles { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; top: -30px; right: -30px; width: 100px; height: 100px;
border-radius: 50%; background: rgba(0,87,167,0.03); z-index: 0;
}
.faq-section .option-card .card-dots { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; bottom: 10px; left: 10px; width: 60px; height: 60px; opacity: 0.4;
background-image: radial-gradient(#0057a7 1.5px, transparent 1.5px); background-size: 12px 12px; z-index: 0;
}
.faq-section .option-header { /* FAQ için eklendi - Kapsam daraltıldı */
position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
gap: 10px; margin-bottom: 15px; z-index: 1;
}
.faq-section .option-icon { /* FAQ için eklendi - Kapsam daraltıldı */
width: 45px; height: 45px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center;
box-shadow: 0 8px 16px rgba(0,87,167,0.1); transition: all 0.3s ease; /* transform-style: preserve-3d; */ /* transform: translateZ(10px); */
}
.faq-section .option-icon i { font-size: 20px; color: #0057a7; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .option-header h4 { /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 18px; font-weight: 600; color: #0d1e3a; margin: 0; position: relative;
/* transform-style: preserve-3d; */ /* transform: translateZ(5px); */
}
.faq-section .option-card p { font-size: 15px; line-height: 1.6; color: #5b6c8b; margin-bottom: 15px; position: relative; z-index: 1; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .taksit-options { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1; justify-content: center;} /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .taksit-pill { /* FAQ için eklendi - Kapsam daraltıldı */
background: white; padding: 10px 18px; border-radius: 30px; font-size: 14px; font-weight: 600; color: #0d1e3a;
box-shadow: 0 5px 15px rgba(0,0,0,0.05); cursor: pointer; transition: all 0.3s ease;
/* transform-style: preserve-3d; */ transform: translateZ(0);
}
.faq-section .discount-badge { /* FAQ için eklendi - Kapsam daraltıldı */
position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px;
background: linear-gradient(135deg, #0057a7, #0080ff); color: white; padding: 10px 20px; border-radius: 40px;
font-size: 14px; font-weight: 600; box-shadow: 0 8px 20px rgba(0,87,167,0.2);
/* transform-style: preserve-3d; */ /* transform: translateZ(5px); */ transition: all 0.3s ease;
}
.faq-section .secure-payment { /* FAQ için eklendi - Kapsam daraltıldı */
display: flex; align-items: center; gap: 12px; font-size: 14px; color: #5b6c8b; transition: all 0.3s ease;
padding: 12px; border-radius: 12px; background: linear-gradient(to right, rgba(0,87,167,0.05), rgba(0,87,167,0.01));
}
.faq-section .secure-icon { /* FAQ için eklendi - Kapsam daraltıldı */
width: 32px; height: 32px; min-width: 32px; background: white; border-radius: 50%; display: flex;
align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,87,167,0.1);
}
.faq-section .secure-icon i { font-size: 14px; color: #0057a7; } /* FAQ için eklendi - Kapsam daraltıldı */
/* Teslimat & Destek Alt Kısım */
.faq-section .delivery-section .gradient-bg { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; width: 100%; height: 100%;
background: linear-gradient(45deg, rgba(0,87,167,0.02) 0%, rgba(0,129,255,0.05) 100%); z-index: 0;
}
.faq-section .services-grid { /* FAQ için eklendi - Kapsam daraltıldı */
display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 0 30px 30px; position: relative; z-index: 3;
}
.faq-section .service-card { /* FAQ için eklendi - Kapsam daraltıldı */
background: white; border-radius: 16px; padding: 25px; box-shadow: 0 10px 25px rgba(0,0,0,0.05);
transition: all 0.4s ease; position: relative; overflow: hidden; /* transform-style: preserve-3d; */ transform: translateZ(0);
}
.faq-section .service-card .card-decor { /* FAQ için eklendi - Kapsam daraltıldı */
position: absolute; top: 0; right: 0; width: 80px; height: 80px;
background: linear-gradient(135deg, rgba(0,87,167,0.08), rgba(0,129,255,0.08));
clip-path: polygon(100% 0, 0 0, 100% 100%); z-index: 0;
}
.faq-section .service-header { /* FAQ için eklendi - Kapsam daraltıldı */
position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center;
gap: 10px; margin-bottom: 15px;
}
.faq-section .service-icon { /* FAQ için eklendi - Kapsam daraltıldı */
width: 42px; height: 42px; background: linear-gradient(135deg, #0057a7, #0080ff); border-radius: 12px;
display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 16px rgba(0,87,167,0.15);
/* transform-style: preserve-3d; */ /* transform: translateZ(5px); */ transition: all 0.3s ease;
}
.faq-section .service-icon i { font-size: 18px; color: white; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .service-header h4 { /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 18px; font-weight: 600; color: #0d1e3a; margin: 0; /* transform-style: preserve-3d; */ /* transform: translateZ(5px); */
}
.faq-section .service-card ul { position: relative; z-index: 2; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .feature-item { /* FAQ için eklendi - Kapsam daraltıldı */
display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 14px; color: #5b6c8b; transition: all 0.3s ease;
}
.faq-section .feature-item:last-child { margin-bottom: 0; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .feature-icon { /* FAQ için eklendi - Kapsam daraltıldı */
width: 22px; height: 22px; background: rgba(0,87,167,0.08); border-radius: 50%; display: flex;
align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; transition: all 0.3s ease;
}
.faq-section .feature-icon i { font-size: 10px; color: #0057a7; transition: all 0.3s ease; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .service-card p { position: relative; z-index: 2; font-size: 14px; line-height: 1.6; color: #5b6c8b; margin-bottom: 15px; text-align: center; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .contact-options { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .contact-btn { /* FAQ için eklendi - Kapsam daraltıldı */
display: flex; align-items: center; gap: 10px; border-radius: 40px; padding: 10px 15px;
text-decoration: none; font-weight: 500; font-size: 14px; transition: all 0.3s ease;
/* transform-style: preserve-3d; */ transform: translateZ(0);
}
.faq-section .contact-btn:nth-of-type(1) { background: rgba(0,87,167,0.05); color: #0057a7; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .contact-btn:nth-of-type(2) { background: rgba(37,211,102,0.1); color: #25d366; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .btn-icon { /* FAQ için eklendi - Kapsam daraltıldı */
width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.faq-section .contact-btn:nth-of-type(1) .btn-icon { background: #0057a7; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .contact-btn:nth-of-type(2) .btn-icon { background: #25d366; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .btn-icon i { font-size: 12px; color: white; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .contact-btn:nth-of-type(2) .btn-icon i { font-size: 14px; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .working-hours { /* FAQ için eklendi - Kapsam daraltıldı */
position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; font-size: 13px; color: #5b6c8b;
padding: 8px 12px; background: rgba(0,87,167,0.05); border-radius: 6px;
}
.faq-section .working-hours i { color: #0057a7; } /* FAQ için eklendi - Kapsam daraltıldı */
/* Hover Efektleri */
@keyframes float1 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-15px) translateX(10px); } } /* FAQ için eklendi */
@keyframes float2 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(20px) translateX(-15px); } } /* FAQ için eklendi */
@keyframes float3 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-10px) translateX(-10px); } } /* FAQ için eklendi */
@keyframes glow { 0%, 100% { filter: blur(15px); opacity: 0.2; } 50% { filter: blur(20px); opacity: 0.3; } } /* FAQ için eklendi */
/* Hexagon kart hover efektleri kaldırıldı */
.faq-section .check-item:hover .check-icon { transform: scale(1.2); background: rgba(0,87,167,0.2); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .check-item:hover .check-icon i { transform: scale(1.2); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .tag:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,87,167,0.1); background: linear-gradient(135deg, rgba(0,87,167,0.1), rgba(0,129,255,0.1)); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .tag:hover i { transform: rotate(10deg); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .step:hover { transform: translateX(5px); background: linear-gradient(to right, rgba(0,87,167,0.08), rgba(255,255,255,0)); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .step:hover .step-number { transform: scale(1.1); box-shadow: 0 8px 20px rgba(0,87,167,0.3); } /* FAQ için eklendi - Kapsam daraltıldı */
/* Wavy kart hover efektleri kaldırıldı */
/* Option kart hover efektleri kaldırıldı */
.faq-section .taksit-pill:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 20px rgba(0,87,167,0.1); color: #0057a7; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .discount-badge:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 30px rgba(0,87,167,0.3); } /* FAQ için eklendi - Kapsam daraltıldı */
/* Service kart hover efektleri kaldırıldı */
.faq-section .feature-item:hover .feature-icon { transform: scale(1.2); background: rgba(0,87,167,0.15); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .contact-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 5px 15px rgba(0,0,0,0.05); } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .contact-btn:hover .btn-icon { transform: scale(1.1); box-shadow: 0 5px 10px rgba(0,0,0,0.1); } /* FAQ için eklendi - Kapsam daraltıldı */
/* Hemen Satın Al Butonu Stilleri */
.faq-section .buy-now-section { /* FAQ için eklendi - Kapsam daraltıldı */
text-align: center;
margin-top: 60px; /* Grid ile buton arası boşluk */
}
.faq-section .buy-now-btn { /* FAQ için eklendi - Kapsam daraltıldı */
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(135deg, #0057a7, #0080ff);
color: white;
padding: 15px 35px;
border-radius: 50px;
font-size: 18px;
font-weight: 700;
text-decoration: none;
box-shadow: 0 10px 25px rgba(0,87,167,0.25);
transition: all 0.3s ease;
}
.faq-section .buy-now-btn i { /* FAQ için eklendi - Kapsam daraltıldı */
font-size: 16px;
}
.faq-section .buy-now-btn:hover { /* FAQ için eklendi - Kapsam daraltıldı */
transform: translateY(-3px);
box-shadow: 0 15px 30px rgba(0,87,167,0.35);
}
/* Mobil Uyumluluk - İyileştirilmiş */
@media (max-width: 992px) { /* 992px altı için genel düzenlemeler */
.specs-grid {
grid-template-columns: repeat(2, 1fr) !important; /* Tablette 2 sütun */
}
section[style*="padding: 80px 24px"] {
padding: 60px 20px !important; /* Padding azaltıldı */
}
div[style*="grid-template-columns: repeat(auto-fit, minmax(320px, 1fr))"] {
grid-template-columns: 1fr !important; /* Ürün özeti tek sütun */
gap: 40px !important;
}
/* Ana ürün görseli perspektif efekti kaldırıldı */
div[style*="transform: perspective(1000px) rotateY(-5deg)"] {
transform: none !important;
}
.faq-grid { /* FAQ için eklendi */
grid-template-columns: 1fr; /* Tek sütuna düşür */
}
}
@media (max-width: 768px) { /* 768px altı için mobil düzenlemeler */
.specs-grid {
grid-template-columns: 1fr !important; /* Mobilde tek sütun */
gap: 20px !important;
}
.thumbnail-container {
grid-template-columns: repeat(4, 1fr) !important; /* Küçük resimler 4 sütun kalmalı */
gap: 8px !important; /* Aralık küçültüldü */
}
h1 {
font-size: clamp(32px, 8vw, 48px) !important; /* Başlık boyutu ayarlandı */
}
section[style*="padding: 80px 24px"] {
padding: 40px 16px !important; /* Padding daha da azaltıldı */
}
.feature-badge {
padding: 10px 14px !important;
font-size: 13px !important;
}
/* Ana ürün görseli için */
div[style*="transform: perspective(1000px) rotateY(-5deg)"] {
transform: none !important;
max-width: 100% !important;
}
/* Küçük resimler */
.thumbnail {
box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important; /* Gölge azaltıldı */
}
/* Başlık boyutunu ayarla */
h2[style*="font-size: clamp(32px, 4.5vw, 42px)"] {
font-size: clamp(26px, 6vw, 34px) !important; /* Başlık boyutu ayarlandı */
}
/* Metin boyutunu ayarla */
p[style*="font-size: clamp(16px, 2vw, 18px)"] {
font-size: 15px !important;
}
/* Satın al butonunu ayarla */
a.buy-button {
padding: 14px 24px !important;
font-size: 15px !important;
width: 100% !important; /* Tam genişlik */
}
/* Mobilde Satın Al butonunu göster/gizle */
.desktop-buy-button {
display: none !important;
}
.mobile-buy-button {
display: block !important;
margin-top: 25px !important; /* Boşluk artırıldı */
width: 100% !important;
}
/* Teknik özellikler için mobil düzeltmeleri */
.spec-card {
transform: none !important; /* Hover efekti mobilde kaldırıldı */
padding: 25px !important; /* Padding ayarlandı */
box-shadow: 0 8px 25px rgba(0,0,0,0.06) !important; /* Gölge ayarlandı */
}
h3[style*="font-size: 18px"] {
font-size: 17px !important; /* Başlık boyutu ayarlandı */
}
p[style*="font-size: 15px"] {
font-size: 14px !important;
}
/* Kapak bölümü mobil düzenlemeleri */
div[style*="max-width: 700px"] {
max-width: 90% !important; /* İçerik genişliği ayarlandı */
}
h1[style*="font-size: clamp(36px, 7vw, 68px)"] {
font-size: clamp(30px, 9vw, 45px) !important; /* Kapak başlığı ayarlandı */
letter-spacing: -1px !important;
}
div[style*="gap: 25px"] {
gap: 15px !important; /* Boşluk azaltıldı */
}
div[style*="padding: 8px 16px"] { /* Özellik butonları */
padding: 7px 14px !important;
font-size: 11px !important;
}
/* Bilgi çubuğu mobil */
div[style*="position: absolute; bottom: 0;"][style*="padding: 12px 0;"] {
padding: 10px 0 !important;
gap: 15px !important; /* Elemanlar arası boşluk */
}
div[style*="position: absolute; bottom: 0;"][style*="padding: 12px 0;"] > div {
gap: 15px !important; /* İç boşluk */
justify-content: center !important;
}
div[style*="position: absolute; bottom: 0;"][style*="padding: 12px 0;"] span {
font-size: 11px !important; /* Yazı boyutu */
}
div[style*="position: absolute; bottom: 0;"][style*="padding: 12px 0;"] svg {
width: 16px !important; /* İkon boyutu */
height: 16px !important;
margin-right: 5px !important;
}
/* FAQ Mobil */
.faq-section .section-header h2 { font-size: 36px !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .section-header p.description { font-size: 16px !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .services-grid { grid-template-columns: 1fr !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .card-header { height: auto !important; padding: 25px !important; } /* Mobil için header padding */ /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .hexagon-card .header-content { gap: 15px !important; } /* Mobil için hexagon header gap */ /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .card-section .section-header { padding: 25px !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .card-section .section-header > div { gap: 15px !important; } /* Mobil için morph header gap */ /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .card-section .section-header h3 { font-size: 22px !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .card-section .section-header p { font-size: 14px !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .payment-content { padding: 25px !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .services-grid { padding: 0 25px 25px !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .service-card { padding: 20px !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .contact-options .contact-btn { font-size: 13px !important; padding: 8px 12px !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .working-hours { font-size: 12px !important; } /* FAQ için eklendi - Kapsam daraltıldı */
.faq-section .buy-now-btn { font-size: 16px !important; padding: 12px 30px !important; } /* Mobil buton boyutu */ /* FAQ için eklendi - Kapsam daraltıldı */
}
/* Garanti ve Bakım Mobil Uyumluluk */
@media (max-width: 768px) {
/* Ana bölüm padding ayarı */
section[style*="padding: 80px 20px;"] {
padding: 50px 10px !important; /* Dikey ve yatay padding daha da azaltıldı */
}
[style*="display: flex; flex-wrap: wrap; gap: 40px;"] {
flex-direction: column !important;
}
[style*="display: grid; grid-template-columns: 1fr 1fr;"] {
grid-template-columns: 1fr !important;
}
/* Petek yapısı için mobil uyumluluğu iyileştir */
[style*="display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(4, 80px);"] {
display: flex !important;
flex-wrap: wrap !important;
justify-content: center !important;
gap: 15px !important;
grid-template-columns: none !important; /* Grid ayarlarını sıfırla */
grid-template-rows: none !important;
height: auto !important; /* Yüksekliği otomatik yap */
margin-bottom: 30px !important; /* Alt boşluğu artır */
}
[style*="grid-column:"] {
grid-column: auto !important; /* Grid konumlandırmasını sıfırla */
grid-row: auto !important;
width: 110px !important; /* Sabit boyut daha da küçültüldü */
height: 110px !important; /* Sabit boyut daha da küçültüldü */
margin: 4px !important; /* Margin azaltıldı */
position: relative !important; /* Pozisyonu relative yap */
}
/* İçerik boyutlarını ayarla */
[style*="grid-column:"] h4 {
font-size: 12px !important; /* Font boyutu daha da küçültüldü */
line-height: 1.3 !important; /* Satır yüksekliği ayarlandı */
}
[style*="grid-column:"] div[style*="width: 40px;"] {
width: 28px !important; /* Daire boyutu daha da küçültüldü */
height: 28px !important; /* Daire boyutu daha da küçültüldü */
margin-bottom: 5px !important; /* Boşluk daha da azaltıldı */
}
[style*="grid-column:"] div[style*="width: 40px;"] span,
[style*="grid-column:"] div[style*="width: 40px;"] i {
font-size: 13px !important; /* İçerik font boyutu daha da küçültüldü */
}
svg[style*="position: absolute;"] { /* Bağlantı çizgilerini sadece mobilde gizle */
display: none; /* !important kaldırıldı */
}
/* Alt Bilgilendirme mobil */
[style*="margin-top: 30px;"][style*="display: flex;"] {
flex-direction: column !important;
gap: 15px !important;
align-items: flex-start !important; /* Sola hizala */
padding: 20px !important;
}
[style*="margin-top: 30px;"][style*="display: flex;"] > div[style*="width: 1px;"] {
display: none !important; /* Ayırıcı çizgiyi gizle */
}
[style*="margin-top: 30px;"][style*="display: flex;"] > div {
width: 100% !important; /* Tam genişlik */
}
}
@media (max-width: 480px) { /* FAQ için eklendi */
.faq-section { padding: 60px 0 !important; }
.faq-section .section-header { margin-bottom: 50px !important; } /* Kapsam daraltıldı */
.faq-section .subtitle { font-size: 13px !important; padding: 6px 15px !important; } /* Kapsam daraltıldı */
.faq-section .section-header h2 { font-size: 30px !important; } /* Kapsam daraltıldı */
.faq-section .card-body { padding: 20px !important; } /* Kapsam daraltıldı */
.faq-section .hexagon-list { padding: 20px !important; } /* Kapsam daraltıldı */
.faq-section .taksit-pill { font-size: 13px !important; padding: 8px 15px !important; } /* Kapsam daraltıldı */
.faq-section .secure-payment span { font-size: 13px !important; } /* Kapsam daraltıldı */
.faq-section .services-grid { gap: 15px !important; } /* Kapsam daraltıldı */
.faq-section .service-card { padding: 20px !important; } /* Kapsam daraltıldı */
.faq-section .buy-now-section { margin-top: 40px !important; } /* Kapsam daraltıldı */
.faq-section .buy-now-btn { font-size: 15px !important; padding: 10px 25px !important; } /* Daha küçük mobil buton boyutu */ /* Kapsam daraltıldı */
}
Panasonic
TOUGHBOOK CF-52
Yenilenmiş A Kalite
endüstriyel performans
Intel® Core™ i5 3.Nesil
8 GB
240 GB - 1 TB SSD
ÜRÜN FİYATINA KDV DAHİL DEĞİLDİR
ÜRÜN RESİMLERİ GERÇEK FOTOĞRAFLARDIR
A Kalite Yenilenmiş
Panasonic TOUGHBOOK CF-52
Endüstriyel standartlarda üretilmiş Panasonic TOUGHBOOK CF-52, yüksek performansı ve efsanevi
dayanıklılığını bir araya getiriyor.
3 ay garantili
ve bakımları tamamlanmış A kalite ürünlerle iş verimliliğinizi maksimuma çıkarın.
3 Ay Garanti
i5 3.Nesil İşlemci
8GB DDR3 RAM
SSD Disk (240GB-1TB)
Hemen Satın Al
A KALİTE




Hemen Satın Al
TEKNİK ÖZELLİKLER
Endüstriyel Standartlarda Donanım
Panasonic TOUGHBOOK CF-52, güçlü donanımı ve yarı dayanıklı yapısıyla zorlu koşullarda bile kesintisiz çalışmanızı sağlar.
İşlemci
Intel® Core™ i5 3.Nesil
Yüksek Performans
Bellek (RAM)
8GB DDR3
Depolama
240GB / 480GB / 1TB SSD
Yüksek Hızlı Veri Erişimi
Ekran
14" HD / Full HD
Dokunmatik Seçeneği Mevcut
Bağlantı
USB 3.0, HDMI, Ethernet
Bluetooth, Wi-Fi
Dayanıklılık
Yarı Dayanıklı Tasarım
MIL-STD-810G Sertifikalı
Garanti ve Bakım Bilgisi
Tüm ürünlerimiz, size sorunsuz bir deneyim sunmak için kapsamlı kontrol ve bakım süreçlerinden geçirilmektedir.
3 Ay
GARANTİ SÜRESİ
Detaylı Bakım ve Kontrol
Tüm Panasonic TOUGHBOOK CF-52 bilgisayarlarımız A Kalite yenilenmiş olup, kapsamlı bakım ve kontrol süreçlerinden geçirilmektedir. SSD Disk ve RAM belleği sıfır olarak takılır, her ürün gönderim öncesi detaylı testlerden geçirilmektedir.
Bakım Hizmetleri
- Detaylı İç Temizlik
- SSD ve RAM Montajı
Test Süreçleri
- Performans Testleri
- Ekran Kalite Kontrolü
- Batarya Sağlık Kontrolü
Profesyonel Yenileme ve Bakım
Her bir Panasonic TOUGHBOOK CF-52, uzman teknisyenlerimiz tarafından aşağıdaki kapsamlı bakım süreçlerinden geçirilir:
1
Detaylı Fiziksel
İnceleme
2
Kapsamlı İç
Temizlik
3
Sıfır Bileşen
Montajı
4
Son Kontrol ve
Kalite Onayı
A Kalite
Sertifikası
1
Detaylı Fiziksel İnceleme
Cihazın tüm bileşenleri kontrol edilir; ekran, klavye ve touchpad testi yapılır. Dış kasa incelenir ve genel durumu değerlendirilir. Özellikle aşınma ve hasar noktaları tespit edilir.
2
Kapsamlı İç Temizlik
Cihaz demonte edilerek iç bileşenler toz ve kirden arındırılır. Fan ve soğutma kanalları özel ekipmanlarla temizlenir. Bu işlem cihazın performansını ve soğutma kapasitesini artırır.
3
Sıfır Bileşen Montajı
Yeni SSD ve RAM takılır, termal macun yenilenir, tüm sürücüler yüklenir ve güncel işletim sistemi kurulur. Sıfır bileşenler maksimum performans ve dayanıklılık sağlar.
4
Son Kontrol ve Kalite Onayı
48 saatlik stres testi, batarya ömrü kontrolü ve tüm sistemin detaylı fonksiyon testi yapılır. Bu aşamada cihazın tüm çalışma koşulları simüle edilir ve performansı ölçülür.
A Kalite Sertifikası
Tüm testleri başarıyla geçen cihazlar A Kalite sertifikasıyla etiketlenir ve sevkiyata hazırlanır. Bu kalite seviyesi, endüstriyel standartlarda kullanıma hazır olduğunu gösterir.
SIKÇA SORULAN SORULAR
Merak Edilenler
En çok sorulan sorulara yanıtlarımız ve önemli bilgilerimiz
A Kalite Ürün
Nedir ve Ne Anlama Gelir?
A Kalite, ürünün görsel ve işlevsel olarak premium durumda olduğunu ifade eder. Minimal düzeyde kozmetik izler bulunabilir, ancak performans ve kullanıcı deneyimini etkilemez.
Kalite Standartlarımız
- 100-nokta teknik kontrol süreci
- Profesyonel teknisyenler tarafından onay
- Gerçek iş performansı için test edilmiştir
Premium Kalite
Yenilenmiş Ürün
3 Ay Garanti
Teknik servis güvencesiyle
Panasonic CF-52 modellerimiz profesyonel servis ekibimiz tarafından test edilmiş olup, 3 ay boyunca teknik servis güvencesi altındadır. Bu süreçte size bir tık uzaklıktayız!
1
Kapsamlı Koruma
Üretim kaynaklı donanım ve yazılım sorunları ücretsiz onarılır.
2
Hızlı Servis
Garanti kapsamındaki onarımlar için öncelikli servis sağlıyoruz.
3
Uzman Ekip
Panasonic Toughbook konusunda uzmanlaşmış profesyonellerden oluşan ekip.
Ödeme Kolaylığı
Size Özel Seçenekler
Kredi Kartı ile Ödeme
Banka kartlarına vadeli taksit imkanı sunuyoruz. Aşağıdaki taksit seçeneklerinden faydalanabilirsiniz:
3 Taksit6 Taksit
9 Taksit12 Taksit
Havale/EFT ile Ödeme
Banka havalesi veya EFT ile ödeme yapmayı tercih ederseniz, %2 ek indirim avantajından yararlanabilirsiniz.
Havale/EFT ile %2 indirim!
%100 Güvenli Ödeme: İşlemleriniz 256-bit SSL sertifikası ile şifrelenerek korunmaktadır.
Teslimat & Destek
Her Adımda Yanınızdayız
Siparişinizden teslimat sonrasına kadar her adımda sizinle birlikteyiz. Müşteri memnuniyeti bizim önceliğimizdir.
Hızlı Teslimat
- 24 Saat içinde kargoya teslim
- Anlaşmalı kargo şirketleri ile güvenli teslimat
- Canlı kargo takip sistemi
7/24 Destek
Müşteri hizmetleri ekibimiz sorularınız için hazır beklemektedir.
0850 532 0550
Whatsapp Hattı
Hafta içi 09:00 - 18:00 saatleri arasında hizmet vermekteyiz.
Hemen Satın Al
No questions have been asked about this product yet.
Be the first to ask a question!Ask a Question
No reviews yet
Have you tried this product? Share your experience and help other customers make the right choice. Your review will be published after approval.
Türkçe
English
العربية