* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Modern sistem fontu */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f5f7;
    color: #111827;
    min-height: 100vh;
}

/* Ana layout: header + main + footer */
body > main {
    min-height: calc(100vh - 60px - 50px);
    display: block;
}

/* ------------------------ */
/* ÜST MENÜ                 */
/* ------------------------ */

.ust-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ust-sol {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* LOGO – 70px, ~20 space sağa kaymış */
.logo a {
    display: inline-flex;
    align-items: center;
    padding-left: 160px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: #ff4b2b;
    text-decoration: none;
}

.logo a img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ------------------------ */
/* MENÜ – DAHA KALIN & MODERN */
/* ------------------------ */

.ana-menu {
    display: flex;
    align-items: center;
}

.ana-menu ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 4px 8px;
    background: #f3f4f6;
    border-radius: 999px;
}

/* kapsayıcı */
.ana-menu li {
    display: flex;
}

/* kurumsal buton görünümü – bir tık daha kalın font */
.ana-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: #1f2933;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.15s ease,
                color 0.15s ease,
                box-shadow 0.15s ease,
                border-color 0.15s ease,
                transform 0.1s ease;
}

/* hover/odak */
.ana-menu a:hover,
.ana-menu a:focus-visible {
    background: #ff4b2b;
    color: #ffffff;
    border-color: #ff4b2b;
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.35);
    transform: translateY(-1px);
}

/* aktif sayfa */
.ana-menu a.aktif {
    background: #ff4b2b;
    color: #ffffff;
    border-color: #ff4b2b;
}

/* sağdaki giriş/üye butonları */
.ust-menu-sag .btn {
    margin-left: 10px;
}

/* Hamburger (mobil) */

.menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    position: relative;
    transition: all 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle span::before {
    top: -6px;
}

.menu-toggle span::after {
    top: 6px;
}

.menu-toggle.acik span {
    background-color: transparent;
}
.menu-toggle.acik span::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle.acik span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ------------------------ */
/* GENEL BUTON STİLLERİ    */
/* ------------------------ */

.btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: #ff4b2b;
    color: #fff;
    border-color: #ff4b2b;
    font-weight: 600;
}

.btn-primary:hover {
    background: #e63819;
    border-color: #e63819;
}

.btn-secondary {
    background: #fff;
    color: #ff4b2b;
    border-color: #ff4b2b;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #ffe7e1;
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #ccc;
    font-weight: 500;
}

.btn-outline:hover {
    border-color: #999;
}

/* ------------------------ */
/* BANNER  - RESİM + ORTA FORM */
/* ------------------------ */

.banner {
    position: relative;
    padding: 20px 40px 0;
    background: #f5f5f7;
}

.banner-hero-bg {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.banner-hero-bg-inner {
    width: 100%;
    height: 374px;
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .banner-hero-bg-inner {
        height: 461px;
    }
}

.banner-search-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 80px);
    max-width: 1200px;
}

.banner-search {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 26px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.38);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

/* ------------------------ */
/* HIZLI KİRALAMA FORMU    */
/* ------------------------ */

.hizli-kiralama-form {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.form-grup {
    display: flex;
    flex-direction: column;
}

.form-grup label {
    font-size: 12px;
    margin-bottom: 6px;
    display: block;
    color: #111827;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-grup input,
.form-grup select {
    width: 100%;
    padding: 11px 13px;
    font-size: 15px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #111827;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    outline: none;
}

.form-grup input:focus,
.form-grup select:focus {
    border-color: #ff4b2b;
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 75, 43, 0.2);
}

.form-grup-buton {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.form-grup-buton .btn-primary {
    border-radius: 999px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
}

.hizli-kiralama {
    display: none;
}

/* ------------------------ */
/* HİZMETLER BÖLÜMÜ        */
/* ------------------------ */

.hizmetler {
    padding: 50px 40px 20px;
    background: #f9fafb;
}

.hizmetler-baslik {
    text-align: left;
    margin-bottom: 24px;
}

.hizmetler-baslik h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.hizmetler-baslik p {
    font-size: 14px;
    color: #6b7280;
}

.hizmet-kart-listesi {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.hizmet-karti {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 14px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 150px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

/* ikonlar */
.hizmet-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.6);
}

/* farklı renkler */
.hizmet-icon-yesil {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}
.hizmet-icon-mavi {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
}
.hizmet-icon-turuncu {
    background: linear-gradient(135deg, #ea580c, #f97316);
}
.hizmet-icon-mor {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}
.hizmet-icon-kirmizi {
    background: linear-gradient(135deg, #dc2626, #f97373);
}
.hizmet-icon-sari {
    background: linear-gradient(135deg, #eab308, #facc15);
    color: #1f2937;
}

.hizmet-karti h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111827;
    margin-bottom: 6px;
}

.hizmet-karti p {
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

.hizmet-karti:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
    border-color: #ff4b2b;
}

/* ------------------------ */
/* ÖNE ÇIKAN ARAÇLAR       */
/* ------------------------ */

.one-cikan-araclar {
    padding: 40px 40px 40px;
}

.one-cikan-araclar h2 {
    font-size: 24px;
    margin-bottom: 6px;
    font-weight: 800;
}

.one-cikan-araclar p {
    color: #555;
    margin-bottom: 20px;
}

.arac-kart-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.arac-karti {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
    border: 1px solid #e5e7eb;
}

/* Öne çıkan araç görselleri – bir tık daha küçültüldü */
.arac-karti img {
    width: 100%;
    height: 160px;          /* 180px'ten küçültüldü */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.arac-karti h3 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 700;
}

.arac-model {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.arac-ozet {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.arac-fiyat {
    font-weight: 600;
    margin-bottom: 10px;
}

.arac-karti-butonlar .btn {
    font-size: 13px;
    padding: 6px 12px;
}

/* ------------------------ */
/* GENEL İÇERİK & FOOTER   */
/* ------------------------ */

.icerik {
    padding: 30px 40px;
}

.alt-bilgi {
    text-align: center;
    padding: 16px;
    font-size: 13px;
    color: #777;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

/* ------------------------ */
/*  RESPONSIVE - TABLET    */
/* ------------------------ */

@media (max-width: 991px) {
    .ust-menu {
        padding: 12px 16px;
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .banner {
        padding: 16px 16px 0;
    }

    .banner-search-wrapper {
        width: calc(100% - 32px);
        max-width: 100%;
    }

    .banner-search {
        padding: 18px 16px;
    }

    .hizli-kiralama-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .hizmetler {
        padding: 40px 16px 16px;
    }

    .hizmet-kart-listesi {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .one-cikan-araclar {
        padding: 50px 16px 32px;
    }

    .icerik {
        padding: 24px 16px;
    }
}

/* ------------------------ */
/*  RESPONSIVE - MOBİL     */
/* ------------------------ */

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-block;
    }

    .ana-menu {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #eee;
        display: none;
        padding: 10px 16px 12px;
    }

    .ana-menu ul {
        flex-direction: column;
        gap: 8px;
        background: transparent;
        padding: 0;
    }

    .ana-menu a {
        justify-content: flex-start;
    }

    .ana-menu.acik {
        display: block;
    }

    .ust-menu-sag {
        display: none;
    }

    .banner-hero-bg-inner {
        height: 374px;
    }

    .hizli-kiralama-form {
        grid-template-columns: 1fr;
    }

    .logo a {
        padding-left: 40px;
    }

    .hizmet-kart-listesi {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Küçük telefonlar (max 575px) */
@media (max-width: 575px) {
    .arac-kart-listesi {
        grid-template-columns: 1fr;
    }

    .hizmet-kart-listesi {
        grid-template-columns: 1fr;
    }

    .form-grup-buton {
        justify-content: center;
    }
}