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

body {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* ============ HERO & HEADER (FLEET STİLİ) ============ */

.fleet-hero.price-hero {
    position: relative;
    height: 70vh;
    background: url("image.png") center center / cover no-repeat;
}

.fleet-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-header.fleet-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-switch {
    display: flex;
    gap: 12px;
}

.lang {
    color: #ffd500;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-size: 14px;
}

.lang.active {
    text-decoration: underline;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: #fff;
}

.fleet-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 70px;
    color: #fff;
}

.fleet-hero-content h1 {
    font-size: clamp(36px, 4.8vw, 60px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.fleet-hero-content p {
    max-width: 520px;
    font-size: 15px;
}

/* ============ FULLSCREEN MENU ============ */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 200;
}

.menu-overlay.active {
    display: flex;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffd500;
    background: none;
    font-size: 48px;
    border: none;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    text-align: center;
    font-size: 30px;
    line-height: 2.2;
    color: #fff;
}

/* ============ PRICE SECTION ============ */

.price-section {
    padding: 70px 40px 80px;
    background: #000;          /* arkayı koyu tuttun diye varsayıyorum */
    color: #fff;
}

.price-container {
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d1a93b;
}

.price-heading {
    max-width: 620px;
    margin-bottom: 28px;
}

.price-heading h2 {
    font-size: 28px;
    margin: 10px 0 10px;
}

.price-heading p {
    font-size: 14px;
    line-height: 1.7;
}

/* Price calculator button */

.price-calculator-btn {
    margin-top: 14px;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1.5px solid #111;
    background: #ffd500;
    color: #111;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.price-calculator-btn i {
    font-size: 14px;
}

.price-calculator-btn:hover {
    background: #ffbf00;
    transform: translateY(-1px);
}

/* Price grid */

.price-grid {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
    gap: 30px;
    margin-top: 20px;
}

/* Cards */

.price-card {
    background: #fafafa;
    border-radius: 16px;
    padding: 20px 20px 22px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
    color: #111;
}

.price-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

/* Price list per km */

.price-list {
    list-style: none;
    margin-bottom: 14px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
    font-size: 14px;
}

.price-list li span:last-child {
    font-weight: 600;
}

.price-note {
    font-size: 12px;
    line-height: 1.7;
    color: #555;
    margin-top: 4px;
}

/* Exclusive transfers columns */

.transfer-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 10px;
}

.transfer-col h4 {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.transfer-col ul {
    list-style: none;
    font-size: 14px;
    line-height: 1.8;
}

/* ============ FOOTER (FLEET STİLİ) ============ */

.footer {
    background: #0a0a0a;
    padding: 80px 40px 40px;
    color: #fff;
    margin-top: 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

/* Logo */
.footer-logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffd500;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 260px;
}

/* Titles */
.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffd500;
    letter-spacing: 0.1em;
}

/* Quick links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #ffd500;
    padding-left: 6px;
}

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 14px;
    font-size: 15px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #ffd500;
    font-size: 16px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 18px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* ================== RESPONSIVE ================== */

/* Tablet */
@media (max-width: 992px) {
    .fleet-hero.price-hero {
        height: 60vh;
    }

    .hero-header.fleet-header {
        padding: 20px 24px;
    }

    .fleet-hero-content {
        padding: 0 24px 60px;
    }

    .price-section {
        padding: 60px 24px 70px;
    }

    .price-heading {
        max-width: 100%;
    }

    .price-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 28px;
    }

    .price-card {
        padding: 18px 16px 20px;
    }

    .transfer-columns {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .fleet-hero.price-hero {
        height: 55vh;
    }

    .hero-header.fleet-header {
        padding: 16px 16px;
    }

    .fleet-hero-content {
        padding: 0 16px 40px;
    }

    .fleet-hero-content h1 {
        letter-spacing: 0.12em;
        font-size: 30px;
    }

    .price-section {
        padding: 50px 16px 60px;
    }

    .price-heading h2 {
        font-size: 22px;
    }

    .price-heading p {
        font-size: 13px;
    }

    .price-calculator-btn {
        width: 100%;
        justify-content: center;
        font-size: 12px;
    }

    .price-grid {
        gap: 20px;
    }

    .transfer-columns {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-inner {
        gap: 30px;
    }

    .footer-desc {
        max-width: 100%;
    }
}
