:root {
    --turkuaz: #06b6d4;
    --sari: #facc15;
    --siyah: #0f172a;
    --beyaz: #ffffff;
    --kirmizi: #ef4444;
    --bordo: #7f1d1d;
    --lacivert: #1d3557;
    --radius: 1.25rem;
    --shadow: 0 10px 30px rgba(0,0,0,0.12);
    --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font);
    background: #0f172a0d;
    color: #0f172a;
    line-height: 1.6;
    padding-bottom: 80px; /* footer alanı için */
}

.container {
    width: min(1200px, 100% - 2rem);
    margin: 0 auto;
}

.topbar {
    background: var(--lacivert);
    color: var(--beyaz);
    font-size: 0.9rem;
    padding: 0.45rem 0;
}
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.top-phone { color: #fff; text-decoration: none; font-weight: 600; }
.notice { background: rgba(250,204,21,0.2); padding: .25rem .5rem; border-radius: 999px; font-size: .7rem; }

.navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.nav-inner {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    color: var(--lacivert);
    text-decoration: none;
    font-size: 1.1rem;
}
.logo i {
    background: linear-gradient(120deg, var(--turkuaz), var(--sari));
    color: #fff;
    padding: .5rem;
    border-radius: .8rem;
}
.nav-menu {
    display: flex;
    gap: .5rem;
    list-style: none;
}
.nav-menu a {
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .6rem 1rem;
    text-decoration: none;
    color: #0f172a;
    border-radius: 999px;
    font-weight: 500;
}
.nav-menu a.active, .nav-menu a:hover {
    background: rgba(6,182,212,0.1);
    color: var(--lacivert);
}
.nav-cta a {
    background: var(--kirmizi);
    color: #fff !important;
    box-shadow: var(--shadow);
}
.nav-toggle {
    background: none;
    border: none;
    font-size: 1.4rem;
    display: none;
}

.hero-section {
    position: relative;
}

.slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
}
.slide {
    position: absolute;
    inset: 0;
    background: #000;
    background-image: linear-gradient(120deg, rgba(6,182,212,.45), rgba(2,6,23,.9)), var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .6s ease;
    display: flex;
    align-items: center;
}
.slide.active { opacity: 1; }
.slide-content {
    color: #fff;
}
.slide-content h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: .75rem;
}
.slide-content p {
    max-width: 520px;
    margin-bottom: 1.25rem;
}
.btn-group { display: flex; gap: .75rem; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .6rem 1.2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    justify-content: center;
}
.btn.primary { background: var(--sari); color: #0f172a; }
.btn.secondary { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn.large { padding: .9rem 1.4rem; }

.slider-controls {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    gap: .5rem;
}
.slider-controls button {
    background: rgba(15,23,42,0.4);
    border: 1px solid rgba(255,255,255,.3);
    width: 36px;
    height: 36px;
    color: #fff;
    border-radius: 999px;
    cursor: pointer;
}

.smart-form {
    background: #fff;
    margin-top: -4rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}
.smart-form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 1rem;
}
.smart-form label { font-weight: 500; font-size: .9rem; }
.smart-form select {
    width: 100%;
    padding: .55rem .5rem;
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
}
.smart-result {
    margin-top: 1rem;
    background: rgba(6,182,212,.05);
    border: 1px solid rgba(6,182,212,.4);
    border-radius: 1rem;
    padding: .75rem 1rem;
    min-height: 42px;
}

.cards-section { margin-top: 2rem; }
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
}
.card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.02);
    border: 1px solid rgba(6,182,212,.1);
}
.card i {
    font-size: 1.7rem;
    background: rgba(6,182,212,.08);
    padding: .5rem;
    border-radius: .75rem;
    color: var(--lacivert);
}
.card.big { min-height: 140px; }

.price-faq {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.price-box, .faq-box {
    background: #fff;
    padding: 1.25rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
.price-table th, .price-table td {
    border-bottom: 1px solid #e2e8f0;
    padding: .4rem .2rem;
    text-align: left;
    font-size: .9rem;
}
.price-note { margin-top: .4rem; font-size: .75rem; color: #475569; }

.accordion .accordion-item {
    border-bottom: 1px solid #e2e8f0;
}
.accordion-header {
    background: none;
    border: none;
    padding: .5rem 0;
    width: 100%;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header::after {
    content: '+';
    font-weight: 700;
}
.accordion-item.active .accordion-header::after { content: '-'; }
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease;
    font-size: .85rem;
    color: #475569;
}

.review-section {
    margin: 2.5rem 0;
}
.review-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.review-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(84,180,53, .35);
    position: relative;
}
.review-card .stars { color: #facc15; }
.review-card .name { font-weight: 700; }
.review-card .date { font-size: .7rem; color: #94a3b8; }

.cta-strip {
    background: linear-gradient(120deg, var(--turkuaz), var(--lacivert));
    color: #fff;
    padding: 1.35rem 0;
    border-radius: 1rem 1rem 0 0;
    margin-bottom: 1.5rem;
}

.site-footer {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    background: #0f172a;
    color: #fff;
    padding: .75rem 0 1.5rem 0;
    z-index: 10;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.footer-links {
    list-style: none;
}
.footer-links a { color: #fff; text-decoration: none; font-size: .85rem; }
.footer-bottom {
    text-align: center;
    font-size: .75rem;
    margin-top: .5rem;
    opacity: .65;
}

.float-btn {
    position: fixed;
    bottom: 4.2rem;
    padding: .6rem .9rem;
    background: var(--kirmizi);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .3rem;
    z-index: 12;
    box-shadow: var(--shadow);
}
.left-btn { left: .8rem; background: var(--turkuaz); }
.right-btn { right: .8rem; background: var(--bordo); }

.scroll-top {
    position: fixed;
    right: 1rem;
    bottom: 8rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(6,182,212,.6);
    color: #fff;
    cursor: pointer;
    display: none;
    z-index: 13;
}

.page { padding-top: 1.5rem; padding-bottom: 5rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
}
.contact-box {
    background: #fff;
    border-radius: 1rem;
    padding: .85rem;
    margin-bottom: .75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.02);
}
.contact-box.warn { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.35); }
.contact-form-wrapper .contact-form {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: .75rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: .5rem .5rem;
    margin-bottom: .65rem;
    border-radius: .7rem;
    border: 1px solid #e2e8f0;
}
.map-box iframe { width: 100%; height: 200px; border: none; border-radius: 1rem; }

.brand-grid, .region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.brand-card, .region-card {
    background: #fff;
    border-radius: 1rem;
    padding: .75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.02);
    border: 1px solid rgba(6,182,212,.06);
}
.brand-card h3, .region-card h3 { font-size: 1rem; }

.legal-list { margin-top: .8rem; padding-left: 1.1rem; }

@media (max-width: 960px) {
    .nav-menu {
        position: absolute;
        inset: 68px 0 auto 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        display: none;
    }
    .nav-menu.show { display: flex; }
    .nav-toggle { display: block; }
    .slider { height: 460px; }
    .smart-form-grid { grid-template-columns: 1fr 1fr; }
    .price-faq { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .smart-form { margin-top: -3rem; }
    .float-btn { bottom: 4.4rem; }
    .slider { height: 470px; }
}

@media (min-width: 1400px) {
    .slider { height: 470px; }
}


.device-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 0.5rem auto;
    border-radius: 0.5rem;
}


@media (max-width: 600px) {
    .topbar .flex-between {
        flex-direction: column;
        text-align: center;
        gap: .25rem;
    }
    .topbar .topbar-right, .topbar .topbar-left {
        font-size: 0.85rem;
    }
}
.top-phone {
    color: #fff;
    text-decoration: none;
}
.top-phone:hover {
    text-decoration: none;
}
.site-footer {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 2rem;
}

/* footer-fix */
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}
.site-footer {
    flex-shrink: 0;
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: auto !important;
    padding-bottom: 1.5rem;
}
.site-footer .footer-bottom {
    margin-bottom: 0;
}

/* Telefon linki alt çizgisiz */
.top-phone,
.site-footer a[href^="tel"] {
    text-decoration: none !important;
    border-bottom: none !important;
    color: inherit !important;
}
.top-phone:hover,
.site-footer a[href^="tel"]:hover {
    text-decoration: none !important;
}


/* global link reset */
a, a:visited, a:hover, a:active {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
}

/* dinamik footer */
.dynamic-footer {
    gap: 1.5rem;
}
.footer-block h3, .footer-block h4 {
    margin-bottom: .5rem;
}
.footer-block ul {
    list-style: none;
    padding: 0;
}
.footer-block ul li {
    margin-bottom: .35rem;
}
.footer-block ul li a {
    color: #fff !important;
    opacity: .9;
}
.footer-badge {
    display: inline-block;
    margin-top: .4rem;
    background: rgba(250,204,21,.15);
    padding: .25rem .6rem;
    border-radius: .5rem;
    font-size: .75rem;
}
.footer-mini-links a {
    color: #fff !important;
    opacity: .8;
}
.site-footer {
    background: radial-gradient(circle at top, #0f172a 0%, #020617 55%);
}
@media (max-width: 768px) {
    .dynamic-footer {
        grid-template-columns: 1fr;
    }
}


/* intro section */
.intro {
    margin: 1.5rem 0;
    text-align: center;
}
.intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: #eee;
}
