@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ============= Define CSS Variables ============== */
:root {
    --color-input-1: hsl(34, 100%, 50%);
    --color-input-2: hsl(34, 100%, 91%);
    --color-input-3: hsl(33, 100%, 91%);
    --color-dark: hsl(0, 0%, 15%);
    --color-light: hsl(36, 100%, 73%);
    --color-midtone: hsl(0, 0%, 93%);
    --text-dark: hsl(0, 0%, 0%);
    --text-light: hsl(43, 6%, 44%);
    --text-hover: hsl(34, 100%, 50%);
    --white: hsl(0, 0%, 93%);
    --max-width: 1200px;
}

body {
    background-color: var(--color-input-3);
    color: var(--text-dark);
}

body.dark-mode {
    background-color: var(--color-dark);
    color: var(--white);
}

body.dark-mode .section__header,
body.dark-mode .nav__links a,
body.dark-mode .nav__logo a {
    color: var(--white);
}

body.dark-mode .nav__menu__btn i {
    color: var(--color-input-1);
}

body.dark-mode .nav__links a:hover {
    color: var(--text-hover);
}

body.dark-mode .nav__header {
    background-color: var(--color-dark);
}

body.dark-mode .section__description,
body.dark-mode .header__content h1,
body.dark-mode .footer__col h4,
body.dark-mode .footer__logo,
body.dark-mode .footer__col i,
body.dark-mode .footer__links a {
    color: var(--white);
}

body.dark-mode .footer__links a:hover,
body.dark-mode .footer__col i:hover {
    color: var(--text-hover);
}

body.dark-mode .divider::before,
body.dark-mode .divider::after {
    background: var(--white);
}

body.dark-mode .divider-icon svg {
    fill: var(--white);
}

body.dark-mode .rental-card {
    background: #fff4f4;;
}

/* ============= Base Styling ============= */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.section__container {
    max-width: var(--max-width);
    padding: 5rem 1rem;
    margin: auto;
}

.section__subheader {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
}

.section__header {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    line-height: 3.5rem;
}

.section__description {
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.75rem;
    text-align: center;
}

.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: var(--color-input-1);
    box-shadow: 0 0 0 2px var(--color-input-1);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
    position: absolute;
    width: 24px;
    fill: var(--color-input-1);
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
    right: 16px;
}

.animated-button .arr-2 {
    left: -25%;
}

.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--color-input-1);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #212121;
    border-radius: 12px;
}

.animated-button:hover .arr-1 {
    right: -25%;
}

.animated-button:hover .arr-2 {
    left: 16px;
}

.animated-button:hover .text {
    transform: translateX(12px);
}

.animated-button:hover svg {
    fill: #212121;
}

.animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px var(--color-input-1);
}

.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}

img {
    display: flex;
    width: 100%;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
}

/* ============= Navbar ============= */
nav {
    position: fixed;
    isolation: isolate;
    width: 100%;
    z-index: 9;
    justify-content: space-between;
}

.nav__header {
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-input-2);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.nav__logo .logo-light {
    max-width: 50px;
    vertical-align: middle;
    max-height: 35px;
    display: none;
}

.nav__logo .logo-dark {
    max-width: 50px;
    vertical-align: middle;
    max-height: 35px;
}

.dark-mode .nav__logo .logo-light {
    display: block;
}

.dark-mode .nav__logo .logo-dark {
    display: none;
}

.nav__logo a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__menu__btn {
    display: flex;
    gap: .5rem;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.theme-switch {
    --toggle-size: 11px;
    /* the size is adjusted using font-size,
       this is not transform scale,
       so you can choose any size */
    --container-width: 5.625em;
    --container-height: 2.5em;
    --container-radius: 6.25em;
    /* radius 0 - minecraft mode :) */
    --container-light-bg: #3d7eae;
    --container-night-bg: #1d1f2c;
    --circle-container-diameter: 3.375em;
    --sun-moon-diameter: 2.125em;
    --sun-bg: #ecca2f;
    --moon-bg: #c4c9d1;
    --spot-color: #959db1;
    --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
    --stars-color: #fff;
    --clouds-color: #f3fdff;
    --back-clouds-color: #aacadf;
    --transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    --circle-transition: 0.3s cubic-bezier(0, -0.02, 0.35, 1.17);
    display: visible;
}

.theme-switch,
.theme-switch *,
.theme-switch *::before,
.theme-switch *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--toggle-size);
}

.theme-switch__container {
    width: var(--container-width);
    height: var(--container-height);
    background-color: var(--container-light-bg);
    border-radius: var(--container-radius);
    overflow: hidden;
    cursor: pointer;
    -webkit-box-shadow:
        0em -0.062em 0.062em rgba(0, 0, 0, 0.25),
        0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    box-shadow:
        0em -0.062em 0.062em rgba(0, 0, 0, 0.25),
        0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
    background-image: linear-gradient(to bottom,
            var(--container-light-bg) 0%,
            #5490c0 100%);
    transition: all var(--transition);
}

.theme-switch__container::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    -webkit-box-shadow:
        0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset,
        0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    box-shadow:
        0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset,
        0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    border-radius: var(--container-radius);
}

.theme-switch__checkbox {
    display: none;
}

.theme-switch__circle-container {
    width: var(--circle-container-diameter);
    height: var(--circle-container-diameter);
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: var(--circle-container-offset);
    top: var(--circle-container-offset);
    border-radius: var(--container-radius);
    -webkit-box-shadow:
        inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
        inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
        0 0 0 0.625em rgba(255, 255, 255, 0.1),
        0 0 0 1.25em rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
        inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
        0 0 0 0.625em rgba(255, 255, 255, 0.1),
        0 0 0 1.25em rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: var(--circle-transition);
    -o-transition: var(--circle-transition);
    transition: var(--circle-transition);
    pointer-events: none;
}

.theme-switch__sun-moon-container {
    pointer-events: auto;
    position: relative;
    z-index: 2;
    width: var(--sun-moon-diameter);
    height: var(--sun-moon-diameter);
    margin: auto;
    border-radius: var(--container-radius);
    background-color: var(--sun-bg);
    -webkit-box-shadow:
        0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset,
        0em -0.062em 0.062em 0em #a1872a inset;
    box-shadow:
        0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset,
        0em -0.062em 0.062em 0em #a1872a inset;
    -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    overflow: hidden;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.theme-switch__sun-moon-container:hover {
    transform: scale(1.1) rotate(5deg);
}

.theme-switch__moon {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    background-color: var(--moon-bg);
    border-radius: inherit;
    -webkit-box-shadow:
        0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset,
        0em -0.062em 0.062em 0em #969696 inset;
    box-shadow:
        0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset,
        0em -0.062em 0.062em 0em #969696 inset;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
    transition:
        all var(--transition),
        transform 0.3s ease;
}

.theme-switch__moon:hover {
    transform: rotate(15deg);
}

.theme-switch__spot {
    position: absolute;
    top: 0.75em;
    left: 0.312em;
    width: 0.75em;
    height: 0.75em;
    border-radius: var(--container-radius);
    background-color: var(--spot-color);
    -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
    transition: background-color 0.3s ease;
}

.theme-switch__spot:nth-of-type(2) {
    width: 0.375em;
    height: 0.375em;
    top: 0.937em;
    left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
    width: 0.25em;
    height: 0.25em;
    top: 0.312em;
    left: 0.812em;
}

.theme-switch__moon:hover .theme-switch__spot {
    background-color: #7a7f8c;
}

.theme-switch__clouds {
    width: 1.25em;
    height: 1.25em;
    background-color: var(--clouds-color);
    border-radius: var(--container-radius);
    position: absolute;
    bottom: -0.625em;
    left: 0.312em;
    -webkit-box-shadow:
        0.937em 0.312em var(--clouds-color),
        -0.312em -0.312em var(--back-clouds-color),
        1.437em 0.375em var(--clouds-color),
        0.5em -0.125em var(--back-clouds-color),
        2.187em 0 var(--clouds-color),
        1.25em -0.062em var(--back-clouds-color),
        2.937em 0.312em var(--clouds-color),
        2em -0.312em var(--back-clouds-color),
        3.625em -0.062em var(--clouds-color),
        2.625em 0em var(--back-clouds-color),
        4.5em -0.312em var(--clouds-color),
        3.375em -0.437em var(--back-clouds-color),
        4.625em -1.75em 0 0.437em var(--clouds-color),
        4em -0.625em var(--back-clouds-color),
        4.125em -2.125em 0 0.437em var(--back-clouds-color);
    box-shadow:
        0.937em 0.312em var(--clouds-color),
        -0.312em -0.312em var(--back-clouds-color),
        1.437em 0.375em var(--clouds-color),
        0.5em -0.125em var(--back-clouds-color),
        2.187em 0 var(--clouds-color),
        1.25em -0.062em var(--back-clouds-color),
        2.937em 0.312em var(--clouds-color),
        2em -0.312em var(--back-clouds-color),
        3.625em -0.062em var(--clouds-color),
        2.625em 0em var(--back-clouds-color),
        4.5em -0.312em var(--clouds-color),
        3.375em -0.437em var(--back-clouds-color),
        4.625em -1.75em 0 0.437em var(--clouds-color),
        4em -0.625em var(--back-clouds-color),
        4.125em -2.125em 0 0.437em var(--back-clouds-color);
    -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
    position: absolute;
    color: var(--stars-color);
    top: -100%;
    left: 0.312em;
    width: 2.75em;
    height: auto;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

/* actions */

.theme-switch__checkbox:checked+.theme-switch__container {
    background-color: var(--container-night-bg);
    background-image: linear-gradient(to bottom,
            var(--container-night-bg) 0%,
            #2d3142 100%);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__circle-container {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__circle-container:hover {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em);
}

.theme-switch__circle-container:hover {
    left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__moon {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__clouds {
    bottom: -4.062em;
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__stars-container {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.theme-switch__container:hover .theme-switch__clouds {
    transform: translateX(15px) scale(1.02);
}

.theme-switch__sun-moon-container::after {
    content: "";
    position: absolute;
    inset: -5px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-switch__sun-moon-container:hover::after {
    opacity: 1;
}

.theme-switch__shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    top: 20%;
    left: -10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-switch__shooting-star-2 {
    position: absolute;
    width: 1px;
    height: 1px;
    background: white;
    top: 35%;
    left: -10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-switch__meteor {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffd700;
    border-radius: 50%;
    top: -10%;
    left: 50%;
    opacity: 0;
    filter: blur(1px);
    transition: opacity 0.3s ease;
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__shooting-star {
    animation: shootingStar 2s linear infinite;
    opacity: 1;
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__shooting-star-2 {
    animation: shootingStar 3s linear infinite 1s;
    opacity: 1;
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__meteor {
    animation: meteor 4s linear infinite 2s;
    opacity: 1;
}

@keyframes shootingStar {
    0% {
        transform: translateX(0) translateY(0) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: translateX(150px) translateY(150px) rotate(45deg);
        opacity: 0;
    }
}

@keyframes meteor {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(150px) scale(0.3);
        opacity: 0;
    }
}

.theme-switch__stars-cluster {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-switch__stars-cluster .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px 1px white;
}

.theme-switch__stars-cluster .star:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: twinkle 1s infinite ease-in-out;
}

.theme-switch__stars-cluster .star:nth-child(2) {
    top: 30%;
    left: 55%;
    animation: twinkle 1s infinite ease-in-out 0.3s;
}

.theme-switch__stars-cluster .star:nth-child(3) {
    top: 40%;
    left: 80%;
    animation: twinkle 1s infinite ease-in-out 0.6s;
}

.theme-switch__stars-cluster .star:nth-child(4) {
    top: 60%;
    left: 30%;
    animation: twinkle 1s infinite ease-in-out 0.9s;
}

.theme-switch__stars-cluster .star:nth-child(5) {
    top: 70%;
    left: 65%;
    animation: twinkle 1s infinite ease-in-out 1.2s;
}

.theme-switch__aurora {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(90deg,
            rgba(0, 255, 255, 0) 0%,
            rgba(0, 255, 255, 0.2) 25%,
            rgba(128, 0, 255, 0.2) 50%,
            rgba(0, 255, 255, 0.2) 75%,
            rgba(0, 255, 255, 0) 100%);
    opacity: 0;
    filter: blur(4px);
    transform: translateY(-100%);
    transition: opacity 0.3s ease;
}

.theme-switch__comets {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-switch__comets .comet {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(90deg, white 0%, transparent 90%);
    border-radius: 50%;
    filter: blur(1px);
}

.theme-switch__comets .comet:nth-child(1) {
    top: 30%;
    left: -10%;
    animation: cometMove 4s linear infinite;
}

.theme-switch__comets .comet:nth-child(2) {
    top: 50%;
    left: -10%;
    animation: cometMove 6s linear infinite 2s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes cometMove {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(200px) translateY(200px) rotate(-45deg) scale(0.2);
        opacity: 0;
    }
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__stars-cluster {
    opacity: 1;
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__aurora {
    opacity: 1;
    animation: auroraWave 8s linear infinite;
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__comets {
    opacity: 1;
}

@keyframes auroraWave {
    0% {
        transform: translateY(-100%) translateX(-50%);
    }

    100% {
        transform: translateY(-100%) translateX(50%);
    }
}

.nav__links {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-transform: uppercase;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--color-dark);
    opacity: .95;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.5s;
    z-index: -1;
}

.nav__links.open {
    transform: translateY(100%);
}

.nav__links a {
    font-weight: 600;
    color: #ff9000;
}

.nav__links a:hover {
    color: white;
}

/* ============= Header ============= */
header {
    display: grid;
    padding-top: 8rem;
    overflow: hidden;
}

.header__image {
    background-image: url("assets/header-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 50px 50px var(--color-input-2) inset;
}

body.dark-mode .header__image {
    box-shadow: 0 0 100px 10px var(--color-dark) inset;
    border-radius: 50%;
}

.header__content {
    padding-inline: 1rem;
}

.header__content h1 {
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 4rem;
}

/* ============= Budget ============= */
.budget__container {
    display: grid;
    gap: 2rem;
    overflow: hidden;
}

.budget__image img {
    max-width: 500px;
    margin-inline: auto;
}

.budget__content .section__description {
    margin-block: 1rem;
}

.budget__btn {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    position: relative;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #000;
}

.divider-icon {
    margin: 0 10px;
}

.divider-icon svg {
    width: 40px;
    height: 40px;
    fill: #000;
}

/* Main container styles */
.rental-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Card styles */
.rental-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    background: #ffbb00;
}

.card-header {
    background: #ffe0b7;
    padding: 20px;
    text-align: center;
}

.card-header img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.card-header h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.card-header h2 a {
    color: #333;
    text-decoration: none;
}

/* Button styles */
.whatsapp-btn {
    display: inline-block;
    background-color: #03702b;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128c3b;
}

.whatsapp-btn .icon {
    margin-right: 8px;
}

.icon-span {
    text-align: center;
    margin: 10px 0;
    color: #000;
    font-weight: 600;
}

/* Price list styles */
.price-list {
    width: 100%;
    border-collapse: collapse;
}

.price-list-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #ffffff;
}

.price-list-item:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 500;
    color: #333;
}

.price-value {
    font-weight: 600;
    color: #222;
}

/* Icon styles */
.price-icon {
    color: #666;
    margin-right: 8px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .card-header h2 {
        font-size: 20px;
    }

    .price-list-item {
        flex-direction: column;
    }

    .price-value {
        margin-top: 5px;
        text-align: right;
    }

    .rental-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.fleet__container {
    padding-block: 5rem;
}

.fleet__container :is(.section__subheader, .section__header) {
    padding-inline: 1rem;
}

.fleet__container .section__description {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 4rem;
    padding-inline: 1rem;
}

.fleet__wrapper-1 {
    margin-bottom: 1rem;
}

.fleet__wrapper-1,
.fleet__wrapper-2 {
    overflow-x: hidden;
}

.fleet__images {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fleet__wrapper-1 .fleet__images {
    animation: scroll-left 50s linear infinite;
}

.fleet__wrapper-2 .fleet__images {
    animation: scroll-right 50s linear infinite;
}

.fleet__images img {
    border-radius: 1rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.fleet__wrapper-1 .fleet__images img {
    max-width: 450px;
}

.fleet__wrapper-2 .fleet__images img {
    max-width: 300px;
}

@keyframes scroll-left {
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.feature__grid {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.feature__card {
    padding: 1rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 1rem;
    border: 2px solid var(--color-input-1);
    background-color: #ffcc89;
}

.feature__card span {
    display: inline-block;
    padding: 5px 11px;
    font-size: 1.5rem;
    color: var(--text-light);
    border-radius: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.feature__card:nth-child(1) span {
    background-color: #fef2f2;
}

.feature__card:nth-child(2) span {
    background-color: #f0fdf4;
}

.feature__card:nth-child(3) span {
    background-color: #eff6ff;
}

.feature__card:nth-child(4) span {
    background-color: #fefce8;
}

.feature__card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.banner__container {
    background-color: var(--text-dark);
    border-radius: 1.5rem;
}

.banner__container .section__header {
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 1rem;
    color: var(--white);
}

.banner__container .section__description {
    max-width: 500px;
    margin-inline: auto;
    margin-bottom: 2rem;
    color: var(--white);
}

.banner__btn {
    display: flex;
    justify-content: center;
}

/* ============= Footer ============= */
.footer__container {
    display: grid;
    gap: 4rem 2rem;
}

.footer__logo {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer__logo img {
    max-width: 35px;
}

.footer__logo .logo-light {
    max-width: 50px;
    vertical-align: middle;
    max-height: 35px;
    display: none;
}

.footer__logo .logo-dark {
    max-width: 50px;
    vertical-align: middle;
    max-height: 35px;
}

.dark-mode .footer__logo .logo-light {
    display: block;
}

.dark-mode .footer__logo .logo-dark {
    display: none;
}

.footer__col .section__description {
    text-align: left;
}

.footer__links {
    display: grid;
    gap: 1rem;
}

.footer__links a {
    font-weight: 500;
    color: var(--text-dark);
}

.footer__links a:hover {
    color: var(--text-hover);
}

.footer__col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer__col i {
    color: var(--text-dark);
    font-size: 1.5rem;
}

.footer__col i:hover {
    color: var(--text-hover);
}

.footer__copy {
    padding: 1rem;
    font-size: 1rem;
    background-color: var(--color-input-1);
    color: var(--text-dark);
    text-align: center;
}

/*=============== SCROLL UP ===============*/
.scrollup {
    position: fixed;
    right: .8rem;
    bottom: -50%;
    background-color: var(--color-input-1);
    color: var(--white);
    display: inline-flex;
    padding: 6px;
    font-size: 1.25rem;
    border-radius: .5rem;
    z-index: 10;
    transition: bottom .4s, transform .4s;
}

.scrollup:hover {
    transform: translateY(-.5rem);
    background-color: var(--color-input-1);
}

.show-scroll {
    bottom: 4rem;
}

/* ============= ScrollBar ============= */
::-webkit-scrollbar {
    width: .8rem;
    background-color: var(--text-dark);
}

::-webkit-scrollbar-thumb {
    background-color: var(--text-light);
}

/* ================ Break-points ================ */
/* for small devices */
@media screen and (min-width: 320px) {
    .section__header {
        font-size: 2.5rem;
    }

    .header__content {
        padding-block: 2rem 3rem;
        padding-inline: 1rem;
    }

    .header__content h1 {
        margin-bottom: 1rem;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-dark);
        text-align: center;
        line-height: 2.5rem;
    }

    .header__image {
        scale: 0.9;
    }

    .budget__image {
        scale: 0.8;
    }

    .feature__card {
        min-height: 90px;
    }
}

/* for medium devices */
@media (min-width: 540px) {
    .header__content h1 {
        font-size: 5rem;
        line-height: 5rem;
    }

    .feature__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature__card {
        min-height: 100px;
    }
}

@media (min-width: 900px) {
    nav {
        position: static;
        padding: 2rem 1rem;
        max-width: var(--max-width);
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .nav__header {
        flex: 1;
        padding: 0;
        background-color: transparent;
    }

    .nav__logo {
        font-size: 1.2rem;
        color: var(--text-dark);
    }

    .nav__logo .logo-light {
        display: none;
    }

    .nav__logo .logo-dark {
        display: flex;
        max-width: 50px;
    }

    .nav__menu__btn {
        display: visible;
    }

    .nav__menu__btn i {
        display: none;
    }

    .nav__links {
        position: static;
        width: fit-content;
        padding: 0;
        flex-direction: row;
        background-color: transparent;
        transform: none !important;
    }

    .nav__links a {
        color: var(--text-dark);
    }

    .nav__links a:hover {
        color: var(--orange);
    }

    header {
        padding-block: 0 3rem;
        grid-template-columns:
            minmax(0, 1fr) minmax(0, calc(var(--max-width) / 2)) minmax(0, calc(var(--max-width) / 2)) minmax(0, 1fr);
    }

    .header__image {
        grid-column: 3/5;
        position: relative;
        isolation: isolate;
        height: 100%;
    }

    .header__image img {
        position: absolute;
        bottom: 0;
        left: 0;
        width: unset;
        height: 100%;
        max-height: 300px;
    }

    .header__content {
        grid-area: 1/2/2/3;
        padding-block: 2rem;
    }

    .header__content h1,
    .header__content .section__description {
        text-align: left;
    }

    .header__content h1 {
        font-size: 5.5rem;
        line-height: 5.5rem;
    }

    .budget__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .budget__content .section__subheader,
    .budget__content .section__header,
    .budget__content .section__description {
        text-align: left;
    }

    .budget__btn {
        justify-content: flex-start;
    }

    .fleet__wrapper-1 {
        margin-bottom: 2rem;
    }

    .fleet__images {
        gap: 2rem;
    }

    .fleet__images img {
        border-radius: 1.5rem;
    }

    .feature__container .section__subheader,
    .feature__container .section__header,
    .feature__container .section__description {
        text-align: left;
    }

    .feature__container .section__description {
        max-width: 600px;
    }

    .feature__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__container {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__col:nth-child(1) {
        grid-column: 1/3;
    }

    .footer__col .section__description {
        max-width: 400px;
    }

    .footer__col iframe {
        display: block;
        margin: 0 auto;
    }
}