/* ? ====================== STYLE CSS ======================= ? */

:root {
    /* ? ======== COLORS ======== ? */

    --pale-purple-pantone: #e7def7;
    --medium-sea-green: #29b372;
    --lavender-blush: #f2e3e9;
    --carolina-purple: #495af7;
    --columbia-blue: #ceeafd;
    --alice-blue-1: #edf1f7;
    --alice-blue-2: #f2f6fd;
    --alice-blue-3: #edf1f7;
    --alice-blue-4: #e4e9f1;
    --independence: #4f5d78;
    --deep-cerise: #d23787;
    --eerie-black: #22262a;
    --space-cadet: #32324e;
    --blue-jeans: #55b0ec;
    --slate-blue: #8050d3;
    --beau-blue: #d9ecfc;
    --honey-dew: #d5f0e4;
    --mimi-pink: #f6d5e6;
    --red-salsa: #eb5656;
    --sapphire: #0056b3;
    --manatee: #8b95a7;
    --white: #ffffff;
    --gradient: linear-gradient(to top, var(--alice-blue-2), var(--alice-blue-3));
    /* ? ======== TYPOGRAPHY ======== ? */

    --ff-quicksand: 'Quicksand', sans-serif;
    --ff-open-sans: 'Open Sans', sans-serif;
    --fs-1: 2.125rem;
    --fs-2: 1.875rem;
    --fs-3: 1.5rem;
    --fs-4: 1.375rem;
    --fs-5: 1.125rem;
    --fs-6: 0.875rem;
    --fs-7: 0.625rem;
    --fw-400: 400;
    --fw-600: 600;
    /* ? ======== TRANSITION ======== ? */

    --transition: 0.5s ease;
    /* ? ======== SPACING ======== ? */

    --section-padding: 50px;
    /* ? ======== RADIUS ========  ? */

    --radius-10: 10px;
    --radius-14: 14px;
    --radius-18: 18px;
    /* ? ======== SHADOW ========  ? */

    --shadow-1: 3px 3px 9px #a5a5bb33;
    --shadow-2: 3px 3px 9px #36aaf74d;
}


/* ? ====================== RESET ======================= ? */

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

li {
    list-style: none;
}

a {
    text-decoration: none;
}

a, img, span, label, input, button, ion-icon {
    display: block;
}

button, input {
    background: none;
    border: none;
    font: inherit;
}

button {
    cursor: pointer;
}

input {
    width: 100%;
}

ion-icon {
    pointer-events: none;
}

html {
    font-family: var(--ff-quicksand);
    color: var(--eerie-black);
    font-size: 1rem;
    line-height: 1.5;
    scroll-behavior: smooth;
}

body {
    background: var(--alice-blue-1);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 15px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: #8894aa4d;
    border: 2px solid var(--white);
}

    ::-webkit-scrollbar-thumb:hover {
        background: #8b95a780;
    }

/* ? ====================== REUSED STYLE ======================= ? */

.container {
    padding-inline: 15px;
}

button, a {
    transition: var(--transition);
}

.btn {
    position: relative;
    background: var(--background, var(--carolina-purple));
    color: var(--color, var(--white));
    min-width: var(--width, 40px);
    min-height: var(--height, 40px);
    padding: 5px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-14);
    font-family: var(--ff-nunito);
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    overflow: hidden;
}

    .btn ion-icon {
        font-size: 22px;
        --ionicon-stroke-width: 40px;
    }

    .btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, hsla(0, 0%, 100%, 0.4), transparent);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .btn:is(:hover, :focus) {
        box-shadow: var(--shadow-2);
    }

        .btn:is(:hover, :focus)::before {
            opacity: 1;
        }

.section {
    padding-block: var(--section-padding);
}

.h1, .h2, .h3 {
    color: var(--space-cadet);
    font-family: var(--ff-quicksand);
    line-height: 1.4;
}

.h1 {
    font-size: var(--fs-1);
    text-transform: uppercase;
}

.h2,
.h3 {
    font-weight: var(--fw-400);
}

.h2 {
    font-size: var(--fs-2);
}

.h3 {
    font-size: var(--fs-4);
}

.w-100 {
    width: 100%;
}

/* ? ====================== HEADER ======================= ? */

/* .navbar {
    display: none;
} */

.header-contact {
    display: none;
}

.header {
    background: var(--alice-blue-1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    z-index: 4;
}

    .header.active {
        box-shadow: var(--shadow-1);
    }

    .header .container {
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .header-actions .btn span {
        display: none;
    }

.user-btn {
    --color: var(--independence);
    --background: var(--white);
    --shadow-2: var(--shadow-1);
    box-shadow: var(--shadow-1);
}

.nav-toggle-btn span {
    background: var(--independence);
    width: 22px;
    height: 2px;
    border-radius: 2px;
    margin-block: 8px;
    transform-origin: right;
    transition: var(--transition);
}

    .nav-toggle-btn span.two {
        transform: scaleX(0.7);
    }

    .nav-toggle-btn span.three {
        transform: scaleX(0.4);
    }

.nav-toggle-btn:is(:hover, :focus) span {
    background: var(--carolina-purple);
}

.nav-toggle-btn.active span {
    transform: scaleX(1);
    background: var(--carolina-purple);
}

.navbar {
    background: var(--alice-blue-1);
    position: fixed;
    top: 70px;
    bottom: 0;
    right: -260px;
    max-width: 260px;
    width: 100%;
    padding: 20px 25px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    visibility: hidden;
    transition: 0.25s cubic-bezier(0.51, 0.03, 0.64, 0.28);
}

    .navbar.active {
        visibility: visible;
        transform: translateX(-100%);
        transition: 0.5s cubic-bezier(0.33, 0.85, 0.56, 1.02);
    }

.navbar-link {
    color: var(--independence);
    font-family: var(--ff-quicksand);
    font-size: var(--fs-6);
    padding-block: 5px;
    margin-bottom: 15px;
}

    .navbar-link:is(:hover, :focus) {
        color: var(--carolina-purple);
    }

.overlay {
    position: fixed;
    top: 70px;
    background: #edf1f7;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

    .overlay.active {
        opacity: 0.7;
        pointer-events: all;
    }



/* ? ====================== HERO ======================= ? */

.hero {
    padding-top: 120px;
}

.hero-title {
    max-width: 20ch;
    margin-bottom: 15px;
}

.hero-text {
    color: var(--independence);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-banner {
    display: none;
}

.hero-form {
    background: var(--gradient);
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    border-radius: var(--radius-18);
    font-family: var(--ff-quicksand);
}

.input-wrapper {
    padding: 15px 20px;
}

    .input-wrapper:not(:last-of-type) {
        border-bottom: 1px solid #00000014;
    }

.input-label {
    color: var(--manatee);
    font-size: var(--fs-6);
    margin-bottom: 10px;
}

.input-field {
    color: var(--space-cadet);
    outline: 2px solid transparent;
    outline-offset: 5px;
    border-radius: 4px;
    transition: var(--transition);
}

    .input-field:focus {
        outline-color: var(--carolina-purple);
    }

    .input-field::placeholder {
        color: var(--independence);
    }

.hero-form .btn {
    --width: calc(100% - 40px);
    --height: 50px;
    margin: 20px;
    text-transform: uppercase;
}


/* ? ====================== FEATURED CAR ======================= ? */

.featured-car .title-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 15px;
    margin-bottom: 30px;
}

.featured-car-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--independence);
    font-size: var(--fs-6);
}

    .featured-car-link span {
        transition: var(--transition);
    }

    .featured-car-link:is(:hover, :focus) span {
        color: var(--space-cadet);
    }

    .featured-car-link ion-icon {
        margin-top: 3px;
        transition: var(--transition);
    }

    .featured-car-link:is(:hover, :focus) ion-icon {
        color: var(--carolina-purple);
    }

.featured-car-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
}

.featured-car-card {
    background: var(--gradient);
    border: 1px solid var(--white);
    border-radius: var(--radius-18);
    padding: 10px;
    box-shadow: var(--shadow-1);
}

    .featured-car-card .card-banner {
        background: #00000033;
        aspect-ratio: 3 / 2;
        border-radius: var(--radius-18);
        overflow: hidden;
    }

        .featured-car-card .card-banner > img {
            height: 100%;
            object-fit: cover;
        }

    .featured-car-card .card-content {
        padding: 20px 10px 10px;
    }

    .featured-car-card .card-title-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
        margin-bottom: 15px;
    }

    .featured-car-card .card-title {
        width: calc(100% - 60px);
    }

        .featured-car-card .card-title > a {
            color: inherit;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .featured-car-card .card-title > a:is(:hover, :focus) {
                color: var(--carolina-purple);
            }

    .featured-car-card .year {
        font-family: var(--ff-quicksand);
        font-size: var(--fs-6);
        font-weight: var(--fw-600);
        padding: 3px 12px;
        border: 2px dashed #8e56f7;
        border-radius: var(--radius-14);
    }

    .featured-car-card .card-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #0000001a;
        margin-bottom: 15px;
    }

    .featured-car-card .card-list-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .featured-car-card .card-list-item ion-icon {
            font-size: 20px;
            color: var(--carolina-purple);
            --ionicon-stroke-width: 38px;
        }

    .featured-car-card .card-item-text {
        color: var(--independence);
        font-size: var(--fs-6);
    }

    .featured-car-card .card-price-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .featured-car-card .card-price {
        font-family: var(--ff-quicksand);
        font-size: var(--fs-6);
        color: var(--space-cadet);
    }

        .featured-car-card .card-price strong {
            font-size: var(--fs-3);
            font-weight: var(--fw-400);
        }

    .featured-car-card .btn:last-child {
        --height: 36px;
        min-width: 100%;
    }

    .featured-car-card .fav-btn {
        --background: var(--beau-blue);
        --color: var(--blue-jeans);
        --height: 36px;
        --width: 36px;
        --shadow-2: none;
    }

        .featured-car-card .fav-btn ion-icon {
            font-size: 18px;
        }

        .featured-car-card .fav-btn:is(:hover, :focus) {
            --background: var(--lavender-blush);
            --color: var(--red-salsa);
        }

/* ? ====================== GET START ======================= ? */

.get-start .section-title {
    margin-bottom: 25px;
}

.get-start-list {
    display: grid;
    gap: 20px;
}

.get-start-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-18);
    border: 1px solid var(--white);
    transition: var(--transition);
}

    .get-start-card:hover {
        background: var(--alice-blue-2);
        box-shadow: var(--shadow-1);
    }

    .get-start-card .card-icon {
        background: var(--icon-card-bg, var(--columnia-blue));
        color: var(--icon-card-color, var(--carolina-purple));
        height: 50px;
        width: 50px;
        display: grid;
        place-items: center;
        border-radius: var(--radius-14);
        margin-bottom: 20px;
    }

        .get-start-card .card-icon ion-icon {
            font-size: 26px;
            --ionicon-stroke-width: 45px;
        }

    .get-start-card .icon-1 {
        --icon-card-bg: var(--mimi-pink);
        --icon-card-color: var(--deep-cerise);
    }

    .get-start-card .icon-2 {
        --icon-card-bg: var(--columbia-blue);
        --icon-card-color: var(--carolina-purple);
    }

    .get-start-card .icon-3 {
        --icon-card-bg: var(--honey-dew);
        --icon-card-color: var(--medium-sea-green);
    }

    .get-start-card .icon-4 {
        --icon-card-bg: var(--pale-purple-pantone);
        --icon-card-color: var(--slate-blue);
    }

    .get-start-card .card-title {
        color: var(--space-cadet);
        font-family: var(--ff-quicksand);
        font-weight: var(--fw-400);
        margin-bottom: 15px;
    }

    .get-start-card .card-text {
        color: var(--independence);
    }

    .get-start-card .card-link {
        position: relative;
        color: var(--carolina-purple);
        width: max-content;
    }

        .get-start-card .card-link::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--carolina-purple);
            transition: var(--transition);
        }

        .get-start-card .card-link:is(:hover, :focus)::before {
            width: 100%;
        }

/* ? ====================== BLOG ======================= ? */

.blog .section-title {
    margin-bottom: 30px;
}

.blog-card {
    background: var(--alice-blue-2);
    border-radius: var(--radius-18);
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    overflow: hidden;
}

    .blog-card .card-banner {
        aspect-ratio: 3 / 2;
        position: relative;
        overflow: hidden;
    }

        .blog-card .card-banner a:first-child {
            height: 100%;
        }

        .blog-card .card-banner img {
            height: 100%;
            object-fit: cover;
        }

    .blog-card .card-badge {
        position: absolute;
        bottom: 20px;
        left: 20px;
        --height: 30px;
        --width: 92px;
    }

    .blog-card .card-content {
        padding: 20px;
    }

    .blog-card .card-title {
        margin-bottom: 20px;
    }

        .blog-card .card-title > a {
            color: inherit;
        }

            .blog-card .card-title > a:is(:hover, :focus) {
                color: var(--carolina-purple);
            }

    .blog-card .card-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .blog-card :is(.publish-date, .comments) {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: var(--fs-6);
        color: var(--independence);
    }

        .blog-card :is(.publish-date, .comments) ion-icon {
            font-size: 15px;
            --ionicon-stroke-width: 50px;
        }

.blog .has-scrollbar {
    display: flex;
    gap: 20px;
    scroll-snap-type: inline mandatory;
    overflow-x: auto;
    padding-bottom: 20px;
}

    .blog .has-scrollbar > li {
        flex-shrink: 0;
        max-width: 330px;
        width: 100%;
        scroll-snap-align: start;
    }

.has-scrollbar::-webkit-scrollbar-track {
    background: var(--alice-blue-1);
    outline: 2px solid var(--carolina-purple);
    border-radius: 10px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
    border-color: var(--alice-blue-1);
    background: var(--carolina-purple);
    border-radius: 10px;
}

.has-scrollbar::-webkit-scrollbar-button {
    width: calc(25% - 40px);
}


/* ? ====================== FOOTER ======================= ? */

.footer {
    background: var(--alice-blue-4);
    color: var(--independence);
}

    .footer a {
        color: inherit;
    }

.footer-top {
    padding-block: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 50px;
}

    .footer-top .logo {
        margin-bottom: 20px;
    }

.footer-text {
    font-size: var(--fs-6);
    line-height: 1.8;
}

.footer-list {
    font-family: var(--ff-quicksand);
}

    .footer-list:not(:last-of-type) {
        width: 50%;
    }

    .footer-list:last-of-type {
        width: 100%;
        column-count: 2;
    }

.footer-list-title {
    color: var(--space-cadet);
    font-weight: var(--fw-600);
    margin-bottom: 8px;
}

.footer-link {
    font-size: var(--fs-6);
    padding-block: 6px;
}

    .footer-link:is(:hover, :focus) {
        color: var(--carolina-purple);
    }

.footer-list:last-child > li:first-child {
    column-span: all;
}

.footer-bottom {
    background: var(--gradient);
    border: 1px solid var(--white);
    border-radius: var(--radius-18) var(--radius-18) 0 0;
    padding: 20px;
}

.social-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    font-size: 20px;
}

    .social-link ion-icon {
        --ionicon-stroke-width: 40px;
    }

    .social-link:is(:hover, :focus) {
        color: var(--carolina-purple);
    }

.copyright {
    font-size: var(--fs-6);
}

    .copyright > a {
        display: inline-block;
    }

        .copyright > a:is(:hover, :focus) {
            color: var(--carolina-purple);
        }


/* ? ====================== MEDIA QUERIES ======================= ? */

/* ? ====================== Larger Than 350px Screen ======================= ? */

@media (min-width: 350px) {

    /* ? ====== FEATURED CAR ====== ? */

    .featured-car-card .card-list {
        grid-template-columns: 1fr 1fr;
    }

    .featured-car-card .card-price {
        margin-right: auto;
    }

    .featured-car-card .btn:last-child {
        min-width: max-content;
        padding-inline: 15px;
    }
}


/* ? ====================== Larger Than 580px Screen ======================= ? */

@media (min-width: 580px) {

    /* ? ====== REUSED STYLE ====== ? */

    .container {
        max-width: 540px;
        margin-inline: auto;
    }

    /* ? ====== HEADER ====== ? */

    .header-actions .btn span {
        display: block;
        font-weight: var(--fw-400);
        padding-inline: 15px;
    }

    .header-actions .btn:first-of-type ion-icon {
        display: none;
    }
}


/* ? ====================== Larger Than 580px Screen ======================= ? */

@media (min-width: 580px) {
}


/* ? ====================== Larger Than 768px Screen ======================= ? */

@media (min-width: 768px) {

    /* ? ====== CUSTOM PROPERTY ====== ? */

    :root {
        /* ? ====== TYPOGRAPHY ====== ? */
        --fs-1: 2.625rem;
    }

    /* ? ====== REUSED STYLE ====== ? */
    .container {
        max-width: 720px;
    }

    /* ? ====== HEADER ====== ? */
    .header-actions {
        gap: 30px;
    }

    .header-contact {
        display: block;
        text-align: center;
    }

        .header-contact .contact-link {
            color: var(--space-cadet);
            font-family: var(--ff-quicksand);
            font-size: var(--fs-5);
            line-height: 1.3;
        }

            .header-contact .contact-link:is(:hover, :focus) {
                color: var(--carolina-purple);
            }

        .header-contact .contact-time {
            color: var(--independence);
            font-size: var(--fs-7);
        }


    /* ? ====== HERO ====== ? */
    .hero {
        position: relative;
        min-height: 85vh;
        display: flex;
        align-items: center;
        z-index: 1;
    }

    .hero-form {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 0.8fr;
    }

    .input-wrapper:not(:last-of-type) {
        border-bottom: none;
        border-right: 1px solid #00000014;
    }

    .input-label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-banner {
        display: block;
        background: url(/images/dacia.jpeg) no-repeat;
        background-size: cover;
        background-position: left;
        position: absolute;
        top: 100px;
        bottom: 50px;
        left: 65%;
        width: 500px;
        border-radius: 30px;
        z-index: -1;
    }

    /* ? ====== FEATURED CAR ====== ? */
    .featured-car-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* ? ====== GET START ====== ? */
    .get-start-list {
        grid-template-columns: 1fr 1fr;
    }

    /* ? ====== FOOTER ====== ? */
    .footer-brand {
        width: 100%;
    }

    .footer-text {
        max-width: 400px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding-block: 30px;
        box-shadow: var(--shadow-1);
    }

    .social-list {
        margin-bottom: 0;
    }
}


/* ? ====================== Larger Than 992px Screen ======================= ? */

@media (min-width: 992px) {

    /* ? ====== REUSED STYLE ====== ? */
    .container {
        max-width: 960px;
    }

    /* ? ====== HOME ====== ? */
    .hero .container {
        width: 100%;
    }

    /* ? ====== BLOG ====== ? */
    .blog .has-scrollbar {
        padding-bottom: 50px;
    }

        .blog .has-scrollbar > li {
            max-width: 450px;
        }

    /* ? ====== FOOTER ====== ? */
    .footer-list:not(:last-of-type) {
        width: 25%;
    }

    .footer-list:last-of-type {
        width: 50%;
    }
}


/* ? ====================== Larger Than 1200px Screen ======================= ? */

@media (min-width: 1200px) {

    /* ? ====== TYPOGRAPHY ====== ? */
    --fs-1: 2.875rem;
    --fs-2: 2rem;
    /* ? ====== REUSED STYLE ====== ? */
    .container {
        max-width: 1170px;
    }

    /* ? ====== HEADER ====== ? */
    .overlay,
    .nav-toggle-btn {
        display: none;
    }

    .navbar,
    .navbar.active {
        all: unset;
    }

    .navbar-link {
        margin-bottom: 0;
        font-weight: var(--fw-600);
    }

    .navbar-list {
        display: flex;
        gap: 50px;
    }

    /* ? ====== HERO ====== ? */
    .hero {
        min-height: 100vh;
    }

    .hero-banner {
        left: auto;
        right: 50px;
        width: 630px;
    }

    .hero-form {
        max-width: 900px;
    }

        .hero-form .btn {
            --width: calc(100% - 40px);
            --height: 50px;
            margin: 20px;
            text-transform: uppercase;
        }

    /* ? ====== FEATURED CAR ====== ? */
    .featured-car-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* ? ====== GET START ====== ? */
    .get-start-list {
        grid-template-columns: repeat(4, 1fr);
    }

    /* ? ====== BLOG ====== ? */
    .blog .has-scrollbar > li {
        max-width: 340px;
        scroll-snap-align: center;
    }

    /* ? ====== FOOTER ====== ? */
    .footer {
        background-color: #0d0d0d;
        color: #fff;
        padding: 50px 20px 20px;
    }

        .footer a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s;
        }

            .footer a:hover {
                color: #fff;
            }

    .footer-top {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .footer-brand {
        max-width: 300px;
    }

    .footer-text {
        margin-top: 10px;
        font-size: 14px;
        color: #aaa;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column h4 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 18px;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        padding-top: 20px;
        text-align: center;
        font-size: 14px;
        color: #555;
    }

        .footer-bottom span {
            color: #555;
            font-weight: 500;
        }

        .footer-bottom .made-by {
            margin-top: 5px;
            font-size: 13px;
            color: #555;
        }

            .footer-bottom .made-by a {
                color: #555;
                text-decoration: none;
                transition: color 0.3s;
            }

                .footer-bottom .made-by a:hover {
                    color: #fff;
                }

    /* Responsive */
    @media(max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: center;
        }

        .footer-links {
            flex-direction: column;
            align-items: center;
        }

        .footer-column {
            text-align: center;
        }
    }



    /*popupkankaaa*/




    

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }


    .blog-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .blog-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: 0.3s ease;
    }

        .blog-card:hover {
            transform: translateY(-6px);
        }

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

    .blog-content {
        padding: 1.5rem;
    }

        .blog-content h3 {
            font-size: 1.1rem;
            margin-bottom: 0.7rem;
        }

        .blog-content a {
            color: #007bff;
            text-decoration: none;
            font-weight: 600;
        }

            .blog-content a:hover {
                text-decoration: underline;
            }

        .blog-content p {
            font-size: 0.95rem;
            color: #555;
        }


    /* Modal genel görünüm */
    .rent-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        overflow-y: auto;
        background-color: rgba(0, 0, 0, 0.6);
    }

    /* İçerik kutusu */
    .rent-modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 20px;
        border-radius: 10px;
        max-width: 500px;
        width: 90%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        position: relative;
        animation: fadeIn 0.3s ease-in-out;
    }

    /* Kapatma butonu */
    .rent-close {
        color: #333;
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        top: 10px;
        right: 20px;
        cursor: pointer;
        transition: color 0.3s;
    }

        .rent-close:hover {
            color: red;
        }

    /* Form alanları */
    .rent-modal-content label {
        font-weight: 500;
        margin-top: 12px;
        display: block;
        font-size: 15px;
    }

    .rent-modal-content input,
    .rent-modal-content select {
        width: 100%;
        padding: 10px 12px;
        margin-top: 5px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 15px;
    }

    /* Buton */
    .rent-btn {
        width: 100%;
        padding: 12px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .rent-btn:hover {
            background-color: #0056b3;
        }

    /* Blog kart hover efekti için */
    .blog-card {
        transition: box-shadow 0.3s ease;
        border-radius: 10px;
        overflow: hidden;
    }

    /* Diğer input alanları */
    #pickup-other-div,
    #return-other-div {
        margin-top: -10px;
    }

    /* Giriş türüne göre gösterilecek alanlar */
    #tc-input,
    #passport-input {
        display: none;
    }

    /* Fade animasyonu */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


.open-rent-modal {
    padding: 12px 24px;
    background: linear-gradient(135deg, #4f46e5, #10b981);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s ease;
}

    .open-rent-modal:hover {
        background: linear-gradient(135deg, #4338ca, #059669);
    }


.rent-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.rent-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 25px;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
}

.rent-close {
    color: #ff4d4d;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: bold;
}

select, input[type="date"], input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.date-group {
    display: flex;
    gap: 10px;
}

.date-btn {
    width: 40px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

    .date-btn:hover {
        background: #4338ca;
    }

.rent-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #10b981, #4f46e5);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
}

    .rent-btn:hover {
        background: linear-gradient(135deg, #059669, #4338ca);
    }