/* Slider Genel Kapsayıcı */
.slider-container {
position: relative;
width: 100%;
height: 100vh; /* Görseldeki genişliği ve ferahlığı sağlamak için yükseklik */
background-color: #f5f5f5;
overflow: hidden;
min-height: 700px; /* İçeriğin çok sıkışmaması için */
}.slider-container .slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.8s ease-in-out;
display: flex;
align-items: center;
}.slider-container .slide.active {
opacity: 1;
z-index: 1;
}.slider-container .slide .slide-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}/* Soldan Sağa Beyaz Degrade Gölge (Resimdeki efekti verir) */
.slider-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
#ffffff 0%,
#ffffffa1 40%,
rgb(255 255 255 / 8%) 48%,
rgb(255 255 255 / 0%) 70%
);
z-index: 2;
}/* İçerik Konteyneri */
.slider-container .container {
position: relative;
z-index: 3;
width: 100%;
max-width: 1350px;
margin: 0 auto;
padding: 0 0;
}/* Metin ve Sol Alan Bloğu */
.slider-container .textic {
max-width: 600px;
color: #1a1a1a;
display: flex;
flex-direction: column;
}.slider-container .text1 {
font-size: 42px;
font-weight: 800;
line-height: 1.25;
margin-bottom: 20px;
color: #111;
}.slider-container .text2 {
font-size: 17px;
font-weight: 500;
line-height: 1.5;
color: #333;
margin-bottom: 40px;
}
.slider-container .tesla-banner {
height: 100px;
margin-bottom: 50px;
}
.slider-container .tesla-banner img {
width: auto !important;
height: 100%;
}/* İkonlu Özellikler Alanı */
.features-row {
display: none;
}.feature-item {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 12px;
}.feature-item .icon-wrap {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
}.feature-item svg {
width: 36px;
height: 36px;
color: #111;
}.feature-item span {
font-size: 13px;
font-weight: 700;
color: #111;
line-height: 1.3;
}/* Butonlar Grubu */
.slider-buttons {
display: flex;
gap: 15px;
align-items: center;
flex-wrap: wrap;
}.slider-buttons .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 14px 24px;
border-radius: 6px;
font-size: 13px;
font-weight: 700;
text-decoration: none;
transition: all 0.3s ease;
}/* Turuncu Buton */
.slider-buttons .btn-orange {
background-color: #ef7f1a; /* Görseldeki turuncu */
color: #ffffff;
border: 1px solid #ef7f1a;
}
.slider-buttons .btn-orange:hover {
background-color: #d14d08;
}/* Beyaz Buton (Whatsapp) */
.slider-buttons .btn-white {
background-color: #25d366;
color: #fff;
border: 1px solid #25d366;
}
.slider-buttons .btn-white:hover {
background-color: #25d366;
}/* ------------------------------------- */
/* Sağdaki Yüzen Logolar (Floating Brands) */
/* ------------------------------------- */
.floating-brands {
position: absolute;
right: 6%;
top: 50%;
transform: translateY(-50%);
background-color: #ffffff;
border-radius: 12px;
padding: 30px 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 55px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); /* Tasarımdaki yumuşak gölge */
z-index: 10;
width: 140px;
}.floating-brands img {
max-width: 100%;
height: auto;
max-height: 30px;
object-fit: contain;
}/* ------------------------------------- */
/* Alt Sigorta Barı */
/* ------------------------------------- */
.insurance-bar-wrapper {
position: absolute;
bottom: 30px;
left: 0;
width: 100%;
display: flex;
justify-content: center;
z-index: 10;
padding: 0 4%;
}.insurance-bar {
background-color: #ffffff;
border-radius: 100px;
padding: 15px 30px;
display: flex;
align-items: center;
gap: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
width: 100%;
max-width: 1350px;
}.insurance-title {
font-size: 13px;
font-weight: 800;
color: #111;
white-space: nowrap;
}/* Dış çerçeve: Logoların göründüğü pencere */
.insurance-slider-container {
width: 100%;
overflow: hidden; /* Taşanı gizle */
background: #fff; /* İhtiyaca göre değiştirilebilir */
padding: 5px 0;
display: flex;
align-items: center;
}/* Hareket eden şerit */
.insurance-logos {
display: flex;
align-items: center;
gap: 68px; /* Logolar arası boşluk */
width: max-content; /* İçerik genişliği kadar uzat */
animation: logos-kaydir 40s linear infinite; /* 40s hızını değiştirerek yavaşlatabilirsin */
}/* Üzerine gelince durdurma */
.insurance-logos:hover {
animation-play-state: paused;
}.insurance-logos img {
height: 25px; /* İstediğin yükseklik */
width: auto;
object-fit: contain;
filter: grayscale(
100%
); /* İstersen logoları gri yapıp hoverda renklendirebilirsin */
opacity: 0.7;
transition: all 4s ease;
}.insurance-logos img:hover {
filter: grayscale(0%);
opacity: 1;
}/* KAYMA EFEKTİ */
@keyframes logos-kaydir {
0% {
transform: translateX(0);
}
100% {
/* İçeriğin tam yarısı kadar kaydırıyoruz çünkü listeyi iki kez yazdırdık */
transform: translateX(-50%);
}
}.insurance-next {
background: none;
border: none;
cursor: pointer;
color: #111;
display: flex;
align-items: center;
justify-content: center;
}
.insurance-next svg {
width: 20px;
height: 20px;
}/* ------------------------------------- */
/* Mevcut Slider Sağ/Sol Yön Okları */
/* ------------------------------------- */
.slider-container .slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255, 255, 255, 0.8);
fill: #111;
border: none;
padding: 5px;
border-radius: 50%; /* Görsel bütünlük için yuvarlak yaptık */
z-index: 11;
cursor: pointer;
height: 40px;
width: 40px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
}.slider-container .slider-btn:hover {
background-color: #fff;
}.slider-container .prev-btn {
left: 15px;
}
.slider-container .next-btn {
right: 15px;
}/* ------------------------------------- */
/* MOBİL UYUM (Responsive Düzenlemeler) */
/* ------------------------------------- *//* --- GENEL DÜZENLEME (Masaüstü için küçük düzeltme) --- */
.slider-container {
position: relative;
width: 100%;
height: 100vh;
min-height: 700px; /* İçeriğin çok sıkışmaması için */
background-color: #f5f5f5;
overflow: hidden;
}/* ... (Mevcut slide, slide-bg, text1, text2 kodların aynen kalabilir) ... *//* ------------------------------------- */
/* TABLET UYUMU (max-width: 1024px) */
/* ------------------------------------- */
@media (max-width: 1024px) {
.slider-container .container {
padding: 0 40px;
}.slider-container .text1 {
font-size: 34px;
}/* Sağdaki yüzen logoları alta, yatay bir sıraya alıyoruz */
.floating-brands {
position: relative;
right: auto;
top: auto;
transform: none;
flex-direction: row; /* Yatay yap */
width: 100%;
max-width: 600px;
margin-top: 30px;
padding: 15px;
gap: 30px;
justify-content: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}.floating-brands img {
max-height: 40px;
}
}/* ------------------------------------- */
/* MOBİL UYUM (max-width: 768px) */
/* ------------------------------------- */
@media (max-width: 768px) {
.slider-container {
height: auto;
min-height: 70vh;
display: flex;
align-items: flex-start;
padding-top: 80px;
padding-bottom: 150px;
}.slider-container .slide {
align-items: end;
}/* Gradyanı Mobilde Değiştiriyoruz: Görselin üstüne beyaz katman */
.slider-overlay {
background: linear-gradient(
180deg,
rgba(255, 255, 255, 0.95) 0%,
rgba(255, 255, 255, 0.8) 50%,
rgba(255, 255, 255, 0.4) 100%
);
display: none;
}.slider-container .container {
padding: 0 20px;
}.slider-container .textic {
max-width: 100%;
text-align: center;
align-items: center;
margin-bottom: 70px;
}.slider-container .text1 {
font-size: 28px;
margin-bottom: 15px;
}.slider-container .text2 {
font-size: 15px;
margin-bottom: 30px;
}.slider-container .tesla-banner {
height: 70px;
margin-bottom: 30px;
}/* Özellikler (Features) Mobilde 2'li yan yana veya tekli */
.features-row {
justify-content: center;
gap: 20px;
width: 100%;
}.feature-item {
flex: 0 0 40%; /* Yan yana ikişerli dizilim */
}.feature-item span {
font-size: 12px;
}/* Butonlar Mobilde Tam Genişlik */
.slider-buttons {
width: 100%;
flex-direction: column;
gap: 10px;
}.slider-buttons .btn {
width: 100%;
padding: 16px;
}/* Alttaki Sigorta Barı Mobilde */
.insurance-bar-wrapper {
bottom: 10px;
}.insurance-bar {
flex-direction: column;
padding: 10px;
gap: 10px;
border-radius: 15px;
}.insurance-title {
font-size: 11px;
}.insurance-logos img {
height: 20px; /* Logoları küçült */
}/* Navigasyon Oklarını Mobilde Küçült veya Gizle */
.slider-container .slider-btn {
width: 30px;
height: 30px;
background-color: rgba(255, 255, 255, 0.6);
}.slider-buttons {
display: none;
}.slider-container .text1 {
font-size: 16px;
background: #ffffff;
border-radius: 20px;
padding: 22px;
}
.slider-container .tesla-banner {
display: none;
}}/* ------------------------------------- */
/* ÇOK KÜÇÜK EKRANLAR (max-width: 480px) */
/* ------------------------------------- */
@media (max-width: 480px) {
.feature-item {
flex: 0 0 100%; /* Çok küçük ekranda alt alta */
}.slider-container .text1 {
font-size: 24px;
}.floating-brands {
display: none; /* Çok küçük ekranda yer kalmazsa gizle */
}
}/**//* Kalite Belgeleri Alanı Genel */
.bilgi-sag-kalite {
background: #fdfdfd;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
border-left: 1px solid #eee;
}.kalite-aciklama {
font-size: 14px;
color: #666;
margin-bottom: 30px;
line-height: 1.6;
}/* Kart Grid Yapısı */
.kalite-belge-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-bottom: 30px;
}/* Tekil Kart Tasarımı */
.kalite-kart-item {
background: #fff;
border: 1px solid #eee;
padding: 20px;
border-radius: 12px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
transition: all 0.3s ease;
}.kalite-kart-item:hover {
transform: translateY(-5px);
border-color: #ef7f1a;
box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}.kalite-logo-wrap {
width: 70px;
height: 70px;
margin-bottom: 15px;
display: flex;
align-items: center;
justify-content: center;
}.kalite-logo-wrap img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}.kalite-info .kalite-kod {
display: block;
font-weight: 800;
color: #111;
font-size: 16px;
margin-bottom: 5px;
}.kalite-info .kalite-ad {
display: block;
font-size: 12px;
color: #888;
line-height: 1.4;
}/* Alt Bilgi Barı */
.kalite-alt-bilgi {
display: flex;
align-items: center;
gap: 10px;
padding: 15px;
background: #f8f9fa;
border-radius: 8px;
font-size: 13px;
color: #555;
border-left: 3px solid #ef7f1a;
}.kalite-alt-bilgi svg {
color: #ef7f1a;
flex-shrink: 0;
}/* Mobil Uyumluluk */
@media (max-width: 991px) {
.bilgi-sag-kalite {
border-left: none;
border-top: 1px solid #eee;
padding: 30px 35px;
}
}@media (max-width: 576px) {
.kalite-belge-grid {
grid-template-columns: 1fr; /* Mobilde alt alta */
}
.kalite-kart-item {
flex-direction: row;
text-align: left;
padding: 15px;
gap: 15px;
}
.kalite-logo-wrap {
width: 50px;
height: 50px;
margin-bottom: 0;
}
}