:root {
    --opel-yellow: #ffcc00;
    --accent: #2563eb;
    --text: #1e293b;
    --glass: rgba(255, 255, 255, .9);
    --dark: #0f172a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    width: 100%;
    background: #f8fafc;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

/* HERO */
.hero-banner {
    height: 60vh;
    background: linear-gradient(rgba(15, 23, 42, .7), rgba(15, 23, 42, .7)),
                url('') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    position: relative;
}

.hero-banner h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-banner p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-banner .badge {
    background: var(--opel-yellow);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .8rem;
    margin-top: 20px;
}

/* HEADER */
header {
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    color: #fff;
}

.logo span { color: var(--opel-yellow); }

/* LAYOUT */
.wrapper {
    max-width: 1400px;
    margin: -50px auto 60px;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.col-left { min-width: 0; }

.main-view {
    border-radius: 25px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 50px rgba(0, 0, 0, .2);
    height: 550px;
    cursor: zoom-in;
    border: 5px solid #fff;
}

.main-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 15px;
    padding-bottom: 5px;
}

.thumb-scroll {
    display: flex;
    gap: 12px;
}

.thumb-scroll img {
    width: 120px;
    height: 85px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    opacity: .6;
    transition: .3s;
    flex: 0 0 auto;
    border: 2px solid transparent;
}

.thumb-scroll img:hover,
.thumb-scroll img.active {
    opacity: 1;
    border-color: var(--accent);
    transform: translateY(-5px);
}

.details-box {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
}

.desc-title {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 25px;
    border-left: 5px solid var(--opel-yellow);
    padding-left: 15px;
}

.desc-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* RIGHT PANEL */
.panel-right {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid #fff;
    padding: 35px;
    border-radius: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.price-tag {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: #000;
    line-height: 1;
    margin: 10px 0;
}

.specs-grid {
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .02);
    border: 1px solid #f1f5f9;
}

.spec-item small {
    display: block;
    color: #64748b;
    font-size: .7rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 5px;
}

.spec-item b {
    color: #000;
    font-size: 1.1rem;
}

.btn-call, .btn-wa {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
    font-weight: 800;
    margin-top: 10px;
    transition: .3s;
}

.btn-call { background: var(--dark); color: #fff; margin-top: 15px; }
.btn-wa { background: #25d366; color: #fff; }
.btn-call:hover, .btn-wa:hover { transform: translateY(-2px); }

/* DANISMAN WIDGET */
.consultant-widget {
    position: fixed;
    bottom: -150px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
}

.consultant-widget.active { bottom: 30px; }

.consultant-avatar {
    position: relative;
    width: 55px;
    height: 55px;
}

.consultant-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--opel-yellow);
}

.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

.consultant-info p { margin: 0; font-size: 0.85rem; color: #64748b; }
.consultant-info strong { display: block; color: var(--dark); font-size: 1rem; }

.consultant-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    border: 1px solid #eee;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* FOOTER */
footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 5% 30px;
    margin-top: 100px;
}

.footer-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h2 { font-family: 'Bebas Neue', cursive; font-size: 2.5rem; margin-bottom: 20px; }
.footer-brand p { opacity: .6; line-height: 1.8; font-size: .9rem; }
.footer-links h4 { font-size: 1.1rem; margin-bottom: 25px; color: var(--opel-yellow); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 15px; opacity: .7; font-size: .9rem; transition: .3s; cursor: pointer; }
.footer-links li:hover { opacity: 1; color: var(--opel-yellow); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 60px; padding-top: 30px; text-align: center; font-size: .8rem; opacity: .5; }

/* MODAL */
#modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

#modal img { max-width: 95%; max-height: 95%; border-radius: 20px; }

/* MOBILE */
@media (max-width: 1000px) {
    .hero-banner h1 { font-size: 3rem; }
    .wrapper { grid-template-columns: 1fr; margin-top: -30px; }
    .desc-content, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .panel-right { position: static; }
}

@media (max-width: 600px) {
    .main-view { height: 320px; }
    .details-box { padding: 25px; }
    .hero-banner { height: 55vh; }
    .hero-banner p { font-size: .9rem; }
    .consultant-widget { right: 15px; left: 15px; max-width: none; }
}

.analiz-tablosu {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.analiz-ust {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--opel-yellow);
    padding-bottom: 10px;
}

.analiz-badge {
    background: var(--dark);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
}

.analiz-satir {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.analiz-satir span {
    color: #64748b;
    font-weight: 500;
}

.analiz-satir b {
    color: var(--dark);
}

.analiz-not {
    margin-top: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #475569;
    border-left: 4px solid var(--opel-yellow);
}

.text-green { color: #16a34a !important; }
.text-blue { color: #2563eb !important; }








/* Çakar Animasyonu */
@keyframes cakarEfekti {
    0% { box-shadow: 0 0 0px var(--opel-yellow); border-color: #e2e8f0; }
    25% { box-shadow: 0 0 25px var(--opel-yellow); border-color: var(--opel-yellow); }
    50% { box-shadow: 0 0 0px var(--opel-yellow); border-color: #e2e8f0; }
    75% { box-shadow: 0 0 25px var(--opel-yellow); border-color: var(--opel-yellow); }
    100% { box-shadow: 0 0 10px rgba(0,0,0,0.1); border-color: #e2e8f0; }
}

/* Pazarlık Balonu Animasyonu */
@keyframes balonSalla {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.consultant-widget.active {
    bottom: 30px;
    animation: cakarEfekti 0.8s ease-in-out 5; /* 5 kez şimşek gibi çakar */
}

/* Pazarlık Balonu CSS */
.consultant-widget::before {
    content: "🤝 Hemen pazarlığa başla!";
    position: absolute;
    top: -45px;
    right: 10px;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    animation: balonSalla 2s infinite ease-in-out;
}

/* Balonun küçük oku */
.consultant-widget::after {
    content: "";
    position: absolute;
    top: -15px;
    right: 30px;
    border-width: 8px;
    border-style: solid;
    border-color: var(--accent) transparent transparent transparent;
}





