
.arac-detay-sayfa {
    padding-top: 0;
}

.arac-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.arac-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;

}

.arac-hero-overlay {
    inset: 0;
}
.arac-hero-fore {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 11;
    pointer-events: none;
    opacity: 1;
}

.arac-hero-icerik {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.arac-rozet {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    backdrop-filter: blur(15px);
    color: #fff;
    font-weight: 600;
}

.arac-hero-baslik {
    font-size: 220px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 24px;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
}

.arac-hero-altbaslik {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    font-weight: 300;
    opacity: 0.9;
}

.arac-hero-butonlar {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.arac-buton {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 15px;
}

.arac-buton.birincil {
    background: #fff;
    color: #000;
}

.arac-buton.birincil:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.arac-buton.ikincil {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.arac-buton.ikincil:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.arac-ozellikler {
    padding: 120px 0;
    background: #000;
}

.arac-ozellikler-baslik {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 80px;
}

.arac-ozellikler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.arac-ozellik-karti {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.arac-ozellik-gorsel {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.arac-ozellik-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    position: relative;
    z-index: 3; 
    display: block;
}

.arac-ozellik-karti:hover .arac-ozellik-gorsel img {
    transform: scale(1.12);
}

.arac-ozellik-karti:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 6px 18px rgba(255,255,255,0.02) inset;
}

.arac-ozellik-gorsel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-120%) skewX(-20deg);
    transition: transform 0.7s ease;
    pointer-events: none;
    z-index: 10;
}

.arac-ozellik-gorsel:hover::after,
.arac-ozellik-karti:hover .arac-ozellik-gorsel::after {
    transform: translateX(220%) skewX(-20deg);
}

.arac-ozellik-baslik {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.arac-ozellik-aciklama {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}
.arac-zaman-cizelgesi {
    padding: 120px 0;
    background: #000;
}

.arac-zaman-cizelgesi-baslik {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 80px;
}

.zaman-cizelgesi-konteyner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.zaman-cizelgesi-cizgi {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #333 5%, #333 95%, transparent);
    transform: translateX(-50%);
    border-radius: 2px;
}

.zaman-cizelgesi-oge {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.zaman-cizelgesi-oge:nth-child(even) {
    flex-direction: row-reverse;
}

.zaman-cizelgesi-oge:nth-child(even) .zaman-cizelgesi-icerik {
    text-align: right;
}

.zaman-cizelgesi-nokta {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    border: 2px solid #444;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.zaman-cizelgesi-oge:hover .zaman-cizelgesi-nokta {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.zaman-cizelgesi-icerik {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zaman-cizelgesi-icerik::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.zaman-cizelgesi-icerik:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.zaman-cizelgesi-icerik:hover::before {
    transform: scaleX(1);
}

.zaman-cizelgesi-yil {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zaman-cizelgesi-baslik {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.zaman-cizelgesi-aciklama {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.bolum-etiket {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #888;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.bolum-baslik {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 48px;
    line-height: 1.2;
}
.arac-ozellikler .bolum-etiket,
.arac-zaman-cizelgesi .bolum-etiket,
.arac-ozellikler .bolum-baslik,
.arac-zaman-cizelgesi .bolum-baslik {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}