@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700&display=swap');

/* --- 0. Variables & Base Styles --- */
:root {
    --main-color: #1e90ff; /* Mavi vurgu rengi */
    --bg-color: #fff;
    --text-color: #222;
    --muted-text: #666;
    --border-radius: 12px;
    --box-shadow: 0 2px 16px rgba(30, 144, 255, 0.08);
}

html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
}

/* --- 1. Global Utilities & Components --- */

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    padding: 0.8rem 2.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: var(--box-shadow);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: #1565c0;
    box-shadow: 0 4px 24px rgba(30, 144, 255, 0.18);
}

/* --- Kiralama Formu Modern --- */
.rental-form-section {
    background: #f7fbff;
    padding: 2.5rem 0 2rem 0;
    min-height: 70vh;
}
.rental-form-title {
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
.rental-form-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(30,144,255,0.13);
    max-width: 540px;
    margin: 0 auto;
    padding: 2.2rem 2.2rem 1.7rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.rental-form-card label {
    margin-bottom: 0.3em;
    margin-top: 0.5em;
    font-weight: 600;
    color: #1e90ff;
    letter-spacing: 0.01em;
}
.form-input {
    width: 100%;
    padding: 0.75em 1.1em;
    border: 1.5px solid #dbeafe;
    border-radius: 10px;
    background: #fafdff;
    font-size: 1.08em;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 12px rgba(30,144,255,0.08);
    transition: border 0.2s;
}
.form-input:focus {
    border: 1.5px solid #1e90ff;
    outline: none;
    background: #f0f7ff;
}
.rental-submit-btn {
    width: 100%;
    font-size: 1.12em;
    padding: 0.9em 0;
    margin-top: 0.2em;
}
.whatsapp-hizli-btn {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 14px rgba(37,211,102,0.09);
}
.whatsapp-hizli-btn:hover {
    background: #1ebe5d;
}
@media (max-width: 600px) {
    .rental-form-card {
        padding: 1.1rem 0.7rem 1.1rem 0.7rem;
        max-width: 99vw;
    }
    .rental-form-title {
        font-size: 1.35rem;
    }
}

/* İletişim Modern */
.iletisim-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 60vh;
    padding: 2.5rem 0 1.5rem 0;
    background: #f7fbff;
}
.contact-title {
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}
.contact-card {
    display: flex;
    gap: 2.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(30,144,255,0.09);
    padding: 2.2rem 2.2rem 1.5rem 2.2rem;
    margin-bottom: 1.5rem;
    max-width: 790px;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
}
.contact-details {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    font-size: 1.13rem;
    color: #1565c0;
    justify-content: center;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}
.contact-icon {
    font-size: 1.35em;
    margin-right: 0.3em;
    color: var(--main-color);
}
.contact-map {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-map iframe {
    width: 100%;
    height: 260px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 2px 18px rgba(30,144,255,0.08);
}
.contact-info-banner {
    margin: 1.5rem auto 0 auto;
    background: #e3f0ff;
    color: #1565c0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(30,144,255,0.07);
    padding: 1rem 1.2rem;
    font-size: 1.09rem;
    font-weight: 600;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
}
.info-icon {
    font-size: 1.25em;
    margin-right: 0.2em;
}
@media (max-width: 900px) {
    .contact-card {
        flex-direction: column;
        gap: 1.3rem;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        align-items: stretch;
    }
    .contact-map {
        max-width: 100%;
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .iletisim-modern {
        padding: 1.1rem 0 0.2rem 0;
    }
    .contact-title {
        font-size: 1.3rem;
    }
    .contact-info-banner {
        font-size: 0.98rem;
        padding: 0.7rem 0.5rem;
    }
}

/* --- 2. Header & Navigation --- */
header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 38px;
    height: 38px;
    cursor: pointer;
    margin-left: 0.7rem;
    z-index: 120;
}
.hamburger span {
    height: 4px;
    width: 100%;
    background: var(--main-color);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.2rem;
        height: 100vh;
        width: 100vw;
        z-index: 110;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.3s;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links li {
        font-size: 1.3rem;
    }
}


.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--main-color);
    font-size: 1.3rem;
    text-decoration: none;
}

.logo img {
    height: 56px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--main-color);
}

/* --- 3. Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #000000;
    padding: 2.5rem 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* --- 4. Content Sections (General Styling) --- */
.section-title { /* Added a common class for section titles */
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
    text-align: center;
    color: var(--text-color); /* Default color */
}

.section-container { /* Added a common class for section containers */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Neden Lotus Section */
.neden-lotus-section {
    background: #f4f9ff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}

.neden-lotus-section .section-title {
    color: var(--main-color);
    margin-bottom: 1.2rem;
}

.neden-lotus-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
}

.neden-lotus-list li {
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
    padding-left: 1.2rem;
    position: relative;
}

.neden-lotus-list li:before {
    content: "✔";
    color: var(--main-color);
    position: absolute;
    left: 0;
}

/* Popüler Araçlar Galerisi */
.populer-araclar-section {
    background: #fff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}

.populer-araclar-gallery {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.populer-arac-card {
    background: #f8f8f8;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1rem 1.2rem 0.7rem 1.2rem;
    width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.populer-arac-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 0.7rem;
}

.populer-arac-title {
    font-size: 1.04rem;
    font-weight: 600;
    color: var(--text-color);
}

.populer-araclar-btn {
    margin-top: 0.7rem;
}

/* Avantajlar Bölümü */
.avantajlar-section {
    background: #f4f9ff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}

.avantajlar-section .section-title {
    color: var(--main-color);
    margin-bottom: 1.2rem;
}

.avantajlar-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.avantaj-kutu {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.2rem 1.6rem;
    width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.avantaj-ikon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.avantaj-baslik {
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.avantaj-aciklama {
    color: var(--muted-text);
    font-size: 0.98rem;
}

/* Müşteri Yorumları */
.yorumlar-section {
    background: #fff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}

.yorumlar-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.yorum-kutu {
    background: #f4f9ff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.3rem 1.4rem;
    width: 270px;
    margin-bottom: 1rem;
}

.yorum-icerik {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 0.7rem;
}

.yorum-musteri {
    color: var(--main-color);
    font-weight: 500;
    font-size: 0.97rem;
}

/* Nasıl Çalışır */
.nasil-calisir-section {
    background: #f4f9ff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}

.nasil-calisir-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nasil-calisir-adim {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.2rem 1.5rem;
    width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.nasil-calisir-ikon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.nasil-calisir-baslik {
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.nasil-calisir-aciklama {
    color: var(--muted-text);
    font-size: 0.98rem;
}

/* Araçlar Grid */

.vehicles-top-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.3rem;
    margin-bottom: 1.7rem;
}
.vehicles-info-banner {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #f4f8ff;
    border-radius: 10px;
    padding: 1rem 1.7rem;
    font-size: 1.09rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(30,144,255,0.04);
    color: var(--main-color);
}
.vehicles-filters {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
}
.vehicle-filter {
    background: #e3f0ff;
    border: none;
    color: var(--main-color);
    font-weight: 600;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(30,144,255,0.04);
    transition: background 0.18s, color 0.18s;
}
.vehicle-filter:hover, .vehicle-filter:focus {
    background: var(--main-color);
    color: #fff;
}

.vehicle-card-features {
    display: flex;
    gap: 0.7rem;
    margin: 0.6rem 0 0.5rem 0;
    font-size: 0.97rem;
    color: #1565c0;
    flex-wrap: wrap;
}
.feature-ikon {
    font-size: 1.1em;
    margin-right: 0.18em;
    vertical-align: middle;
}

.neden-lotus-avantaj {
    margin: 2.7rem auto 0 auto;
    background: #f4f8ff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30,144,255,0.08);
    padding: 2rem 1.2rem 1.6rem 1.2rem;
    max-width: 700px;
    text-align: center;
}
.neden-lotus-avantaj h3 {
    color: var(--main-color);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.neden-lotus-avantajlar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    justify-content: center;
}
.neden-lotus-avantaj-item {
    background: #e3f0ff;
    border-radius: 10px;
    padding: 0.9rem 1.3rem;
    font-size: 1.08rem;
    font-weight: 600;
    color: #1565c0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 1px 4px rgba(30,144,255,0.03);
    margin-bottom: 0.2rem;
}
.avantaj-ikon {
    font-size: 1.3em;
    margin-right: 0.2em;
}

@media (max-width: 900px) {
    .neden-lotus-avantaj {
        padding: 1.3rem 0.5rem 1.1rem 0.5rem;
    }
    .neden-lotus-avantajlar {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
    }
}

    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}
}

.vehicles-section .section-title {
    margin-bottom: 1.5rem;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.vehicle-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(30,144,255,0.10), 0 1.5px 12px rgba(0,0,0,0.03);
    padding: 2.1rem 1.4rem 1.6rem 1.4rem;
    margin: 0.8rem 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.22s, transform 0.18s;
    min-width: 270px;
    max-width: 330px;
    width: 100%;
    border: 1.5px solid #e3ecfa;
    position: relative;
    overflow: hidden;
}
.vehicle-card:hover {
    box-shadow: 0 8px 48px rgba(30,144,255,0.23), 0 4px 24px rgba(0,0,0,0.05);
    transform: translateY(-5px) scale(1.035);
    z-index: 2;
}
.vehicle-card img {
    width: 95%;
    max-width: 240px;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 1.1rem;
    background: #f6faff;
    box-shadow: 0 2px 10px rgba(30,144,255,0.09);
}
.vehicle-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 0.4rem;
    text-align: center;
}
.vehicle-card-desc {
    font-size: 0.97rem;
    color: #7c8ca1;
    margin-bottom: 0.7rem;
    text-align: center;
    min-height: 2.2em;
}
.vehicle-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85em 1.3em;
    justify-content: center;
    font-size: 1.01em;
    margin-bottom: 0.85rem;
    margin-top: 0.2rem;
}
.vehicle-card-features span {
    background: #f6faff;
    border-radius: 7px;
    padding: 0.19em 0.7em;
    color: #1e90ff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.28em;
    font-size: 0.99em;
}
.vehicle-card .btn-primary {
    width: 100%;
    margin-top: 0.7rem;
    font-size: 1.1em;
    padding: 0.95em 0;
    border-radius: 10px;
}
@media (max-width: 900px) {
    .vehicles-grid {
        gap: 1.2rem 0.6rem;
    }
    .vehicle-card {
        min-width: 220px;
        max-width: 98vw;
        padding: 1.5rem 0.5rem 1.1rem 0.5rem;
    }
    .vehicle-card img {
        height: 90px;
        max-width: 180px;
    }
}
@media (max-width: 600px) {
    .vehicles-grid {
        flex-direction: column;
        gap: 1.1rem 0;
    }
    .vehicle-card {
        min-width: 99vw;
        max-width: 99vw;
        margin: 0.7rem 0 0.7rem 0;
        border-radius: 13px;
        padding: 1.1rem 0.5rem 1.1rem 0.5rem;
    }
    .vehicle-card img {
        height: 70px;
        max-width: 99vw;
    }
}
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}

.vehicle-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.vehicle-card-content {
    padding: 1rem 1.2rem 1.5rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vehicle-card-desc {
    font-size: 0.97rem;
    color: var(--muted-text);
    margin-bottom: 1rem;
}

.vehicle-card-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6em;
    font-size: 1.18em;
    font-weight: 600;
    margin: 0.5em 0 0.6em 0;
}
.vehicle-card-price .old-price {
    text-decoration: line-through;
    color: #b6b6b6;
    font-size: 0.98em;
    margin-right: 0.3em;
}
.vehicle-card-price .discounted-price {
    color: #23b04a;
    font-size: 1.28em;
    font-weight: 700;
    margin-right: 0.3em;
}
.vehicle-card-price .discount-label {
    background: #ff9800;
    color: #fff;
    font-size: 0.88em;
    font-weight: 700;
    border-radius: 7px;
    padding: 0.16em 0.6em;
    margin-left: 0.2em;
    letter-spacing: 0.01em;
    display: inline-block;
}
@media (max-width: 600px) {
    .vehicle-card-price {
        font-size: 1em;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2em;
    }
    .vehicle-card-price .discount-label {
        margin-left: 0;
        margin-top: 0.15em;
    }
}
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.vehicle-card .btn-primary {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Hakkımızda, İletişim, Kiralama Formu (General Box Styling) */
.content-box { /* Unified styling for these sections */
    max-width: 600px;
    margin: 2.5rem auto;
    padding: 2rem 1rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-section, .contact-section, .rental-form-section {
    /* Inherit from .content-box */
}

.about-section img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.about-section .section-title, .contact-section .section-title, .rental-form-section .section-title {
    margin-bottom: 1.2rem;
}

.about-section p {
    font-size: 1.07rem;
    color: var(--text-color);
    line-height: 1.7;
    text-align: center;
}

.contact-info {
    margin-bottom: 1.5rem;
    font-size: 1.07rem;
}

.contact-info strong {
    display: inline-block;
    width: 110px;
}

.contact-section iframe {
    width: 100%;
    height: 270px;
    border: none;
    border-radius: var(--border-radius);
}

/* Kiralama Formu */
.rental-form-section form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.rental-form-section label {
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.rental-form-section input,
.rental-form-section textarea {
    padding: 0.7rem 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: 'Poppins', Arial, sans-serif;
    resize: vertical;
}

.rental-form-section textarea {
    min-height: 80px;
    max-height: 180px;
}

.rental-form-section input[type="submit"] {
    background: var(--main-color);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1.1rem;
    padding: 1rem 0;
}

.rental-form-section input[type="submit"]:hover {
    background: #1565c0;
}

/* --- 5. Hakkımızda (About) Page Specific Layouts --- */
.partner-banner.user-friendly {
    background: #f4f8ff;
    border-radius: 10px;
    padding: 1.1rem 1.2rem;
    font-size: 1.09rem;
    box-shadow: 0 2px 8px rgba(30,144,255,0.04);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    font-weight: 500;
    border-left: 4px solid var(--main-color);
    width: 100%; /* Default for smaller screens, adjusted in media queries */
    max-width: 480px; /* Default for smaller screens */
    margin: 1.2rem auto; /* Centered for smaller screens */
}

/* Main About Page Layout */
.about-section.user-friendly-layout {
    background: linear-gradient(90deg, #f4f8ff 0%, #eaf4ff 100%);
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.about-main-container {
    width: 100%;
    max-width: 1200px;
    min-height: 60vh;
    display: flex;
    flex-direction: row; /* Desktop default */
    gap: 3rem;
    justify-content: center;
    align-items: stretch;
    margin: 3.2rem auto;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(30,144,255,0.07);
}

.about-left {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centered for both */
    justify-content: flex-start;
    gap: 1.5rem;
    min-width: 250px;
    max-width: 370px;
    padding-right: 0; /* Override previous padding */
}

.about-main-img {
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
    box-shadow: 0 2px 18px rgba(30,144,255,0.09);
    object-fit: cover;
    margin-bottom: 0.7rem;
    background: #fff;
}

.about-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Desktop default */
    justify-content: center;
    gap: 1.7rem;
    min-width: 260px;
    max-width: 700px;
    padding-left: 0; /* Override previous padding */
    background: #fff; /* Already set in .about-main-container, but kept for clarity if used standalone */
    border-radius: 18px; /* Already set in .about-main-container */
    box-shadow: 0 4px 32px rgba(30,144,255,0.07); /* Already set in .about-main-container */
    padding: 2.5rem; /* Desktop padding */
}

.about-title {
    font-size: 2.1rem;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.about-lead {
    font-size: 1.18rem;
    color: #222;
    margin-bottom: 0.2rem;
    line-height: 1.5;
}

.about-advantages-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Desktop default */
    gap: 1.3rem;
    margin: 1.6rem 0 1.2rem 0;
}

.about-adv-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #e3f0ff;
    border-radius: 11px;
    padding: 1.3rem 1.2rem;
    box-shadow: 0 1px 6px rgba(30,144,255,0.04);
    min-height: 85px;
}

.about-adv-icon {
    font-size: 2rem;
    margin-top: 0.1rem;
    color: var(--main-color);
}

.about-adv-title {
    font-size: 1.09rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 0.22rem;
}

.about-adv-desc {
    font-size: 1.01rem;
    color: #444;
    font-weight: 400;
    line-height: 1.4;
}

.about-thanks {
    font-size: 1.08rem;
    color: #333;
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
}

.btn-primary.about-contact-btn {
    padding: 1.1rem 2.5rem;
    border-radius: 7px;
    font-size: 1.17rem;
    font-weight: 700;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 12px rgba(30,144,255,0.10);
    letter-spacing: 0.01em;
}

.btn-primary.about-contact-btn:hover {
    background: #186fcc;
    box-shadow: 0 4px 16px rgba(30,144,255,0.13);
}

/* About content section (alternative layout, if used) */
.about-content {
    width: 100%;
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 2.5rem 2.5rem 3rem 2.5rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30,144,255,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.13rem;
    color: #222;
    text-align: center;
    max-width: 800px;
}

.about-advantages { /* This seems to be a different grid for advantages */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin: 2.2rem 0;
    width: 100%;
    max-width: 700px;
}

.about-advantage-box {
    background: #e3f0ff;
    color: #1e90ff;
    border-radius: 10px;
    padding: 1.2rem;
    font-weight: 600;
    font-size: 1.13rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 1px 2px rgba(30,144,255,0.05);
    justify-content: center;
    min-height: 60px;
}

.about-advantage-icon {
    font-size: 1.5rem;
    margin-right: 0.3rem;
}

/* --- 6. Footer --- */
footer.footer-ana {
    background: linear-gradient(90deg, #e3f0ff 0%, #fff 100%);
    color: var(--text-color);
    padding: 0;
    margin-top: 3rem;
    border-top: 2px solid #e0e7ef;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 2.5rem 0 1.2rem 0;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 240px;
    min-width: 200px;
    margin-bottom: 1.2rem;
}

.footer-logo {
    height: 54px;
    margin-bottom: 1.1rem;
    display: block;
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: #b1001c;
    font-weight: 600;
}

.partner-logo {
    height: 28px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    padding: 2px 8px;
}

.footer-heryerde {
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    color: var(--main-color);
    font-weight: 500;
}

.menu-col h4, .iletisim-col h4 {
    font-size: 1.1rem;
    color: var(--main-color);
    margin-bottom: 0.7rem;
    letter-spacing: 0.03em;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: var(--main-color);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.7rem 0;
    font-size: 1rem;
}

.footer-contact-list a {
    color: var(--main-color);
    text-decoration: none;
}

.footer-contact-list a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 0.5rem;
}

.footer-social-icon {
    display: inline-block;
    font-size: 1.7rem;
    margin: 0 0.3rem;
    transition: transform 0.2s, color 0.2s;
    text-decoration: none;
    color: #222;
}

.footer-social-icon:hover {
    transform: scale(1.18);
    color: var(--main-color);
}

.footer-bottom {
    border-top: 1px solid #e0e7ef;
    padding: 1rem 0 0.6rem 0;
    text-align: center;
    font-size: 1rem;
    color: var(--muted-text);
}

.footer-info {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--muted-text);
}

/* --- 7. Responsive Design --- */

/* Tablet and smaller screens (max-width: 1100px) - Specific for About page */
@media (max-width: 1100px) {
    .about-main-container {
        flex-direction: column;
        gap: 2.2rem;
        padding: 1.3rem 0.4rem;
        align-items: center;
    }
    .about-left, .about-right {
        max-width: 98vw;
        min-width: 0;
        align-items: center;
        padding: 0;
    }
    .about-right {
        text-align: center;
        box-shadow: 0 2px 12px rgba(30,144,255,0.08); /* Lighter shadow for smaller layout */
        padding: 1.2rem 0.6rem 1.7rem 0.6rem; /* Adjusted padding */
    }
    .about-advantages-grid {
        grid-template-columns: 1fr; /* Single column for advantages */
        gap: 1.1rem;
        max-width: 430px;
        margin: 1.2rem auto;
    }
    .about-main-img, .partner-banner.user-friendly {
        width: 98vw;
        max-width: 480px;
    }
}

/* Tablet and smaller screens (max-width: 900px) - General layouts */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .nav-links {
        gap: 1rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.6rem;
        align-items: flex-start;
    }
    .footer-col {
        min-width: 0;
        width: 100%;
    }
    .footer-container {
        padding: 0 0.5rem; /* Adjusted padding for footer */
    }

    /* Grid sections become column layouts */
    .populer-araclar-gallery,
    .avantajlar-grid,
    .yorumlar-grid,
    .nasil-calisir-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Adjust about advantages grid if it's the alternative one */
    .about-advantages {
        grid-template-columns: 1fr; /* Single column for about advantages */
    }
}

/* Mobile screens (max-width: 700px) - Specific for About content */
@media (max-width: 700px) {
    .about-content {
        padding: 1rem 0.4rem 1.5rem 0.4rem;
    }
    .about-advantages { /* This refers to the secondary about-advantages grid */
        flex-direction: column;
        gap: 0.6rem;
    }
    .partner-banner.user-friendly {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.7rem 0.6rem;
        font-size: 1rem;
    }
}


/* Mobile screens (max-width: 600px) - General adjustments */
@media (max-width: 600px) {
    .navbar {
        padding: 0.5rem 0.5rem;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .vehicles-section {
        padding: 0 0.2rem;
    }
    .content-box { /* Applies to about, contact, rental form */
        padding: 1.2rem 0.3rem;
    }
    .vehicle-card img {
        height: 120px;
    }

    .footer-top {
        padding: 1.2rem 0 0.7rem 0;
    }
    .footer-logo {
        height: 40px;
    }
    .partner-logo {
        height: 20px;
        padding: 1px 5px;
    }
    .footer-heryerde {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
    .footer-bottom {
        font-size: 0.97rem;
    }
    .neden-lotus-section,
    .populer-araclar-section,
    .avantajlar-section,
    .yorumlar-section,
    .nasil-calisir-section {
        padding: 1.2rem 0 0.8rem 0;
    }
    .populer-arac-card,
    .avantaj-kutu,
    .yorum-kutu,
    .nasil-calisir-adim {
        width: 98vw;
        max-width: 320px;
        min-width: 0;
        padding: 0.7rem 0.3rem;
    }
    .footer-info {
        font-size: 0.95rem;
        display: block;
    }
}

/* Modern Araç Kartı Butonları - Dosyanın sonuna ekleyin */
.vehicle-card-modern {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(30,144,255,0.12);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8f2ff;
}

.vehicle-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(30,144,255,0.18);
}

.vehicle-card-modern-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f8fbff;
}

.vehicle-card-modern-content {
    padding: 1.5rem;
}

.vehicle-card-modern-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 0.8rem;
}

.vehicle-card-modern-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.vehicle-card-modern-tag {
    background: #e3f0ff;
    color: #1565c0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vehicle-card-modern-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.vehicle-card-modern-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.vehicle-card-modern-feature svg {
    color: #1e90ff;
    flex-shrink: 0;
}

.vehicle-card-modern-price-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.vehicle-card-modern-price {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.vehicle-card-modern-price .new-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #23b04a;
}

.vehicle-card-modern-price .price-per-day {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.vehicle-card-modern-price .old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

/* Profesyonel Buton Grupları */
.vehicle-card-modern-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 140px;
}

.btn-rezervasyon {
    background: linear-gradient(135deg, #1e90ff 0%, #1565c0 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 12px rgba(30,144,255,0.3);
    position: relative;
    overflow: hidden;
}

.btn-rezervasyon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,144,255,0.4);
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}

.btn-rezervasyon:active {
    transform: translateY(0);
}

.btn-telefon {
    background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-telefon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    background: linear-gradient(135deg, #1ebe5d 0%, #16a085 100%);
}

.btn-telefon:active {
    transform: translateY(0);
}

.btn-telefon svg {
    width: 16px;
    height: 16px;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .vehicle-card-modern-price-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .vehicle-card-modern-buttons {
        gap: 0.5rem;
        min-width: auto;
    }
    
    .btn-rezervasyon,
    .btn-telefon {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}
