* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.hero {
    height: 85vh;
    background:
        linear-gradient(rgba(227, 30, 36, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://media.istockphoto.com/id/1461619292/tr/foto%C4%9Fraf/man-driver-using-mobile-phone-screen-blank-mockup-on-the-road-while-driving-a-car.jpg?s=170667a&w=0&k=20&c=do3TgF6DP893A8HjGEzqNbCiEteRX6VD35z0k0abEco=') center/cover no-repeat;
    display: flex;
    align-items: center;
    width: 60%;
    border-radius: 20px;
}
.hero-main{
    display: flex;
    justify-content: center;

    padding: 30px 0px;

}

.hero-inner {
    
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    color: #fff;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 38px;
    font-weight: 300;
}

.booking-card {
    background: #fff;
    width: 380px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.booking-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.booking-form label {
    font-size: 12px;
    color: #555;
    display: block;
    margin-bottom: 4px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-row input {
    margin-bottom: 12px;
}

.form-row label {
    font-size: 12px;
    color: #555;
    margin-bottom: 4px;
    display: block;
}

.booking-form button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: #C53035;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.booking-form button:hover {
    background: #16302a;
}
.features-strip {
    padding: 40px 20px;
}

.features-container {
    max-width: 1200px;
    margin: auto;
    background: #eef1ef;
    border-radius: 18px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item .icon {
    font-size: 28px;
    color: #1f3d36;
    line-height: 1;
}

.feature-item h4 {
    font-size: 16px;
    margin: 0 0 5px;
    color: #111;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
    color: #666;
}
.why-choose {
    background: #c53035;
    padding: 60px 40px;
    color: #fff;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* LEFT */
.why-left h2 {
    font-size: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-left .icon {
    background: #f6a800;
    color: #000;
    border-radius: 50%;
    padding: 6px 10px;
    font-size: 18px;
}

.subtitle {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 420px;
}

.badge {
    display: inline-block;
    background: #e7f7ef;
    color: #0b8f5a;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 25px;
}

.why-left h3 {
    margin: 20px 0 15px;
    font-size: 22px;
}

.services {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.service-icons span {
    margin-right: 10px;
}

/* RIGHT */
.why-right {
    position: relative;
}

.why-right img {
    width: 100%;
    max-width: 520px;
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    background: #eef3f1;
    color: #222;
    padding: 15px 18px;
    border-radius: 14px;
    display: flex;
    gap: 12px;
    width: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.floating-card span {
    color: #0b8f5a;
    font-weight: bold;
    font-size: 18px;
}

.floating-card h4 {
    margin: 0 0 4px;
    font-size: 15px;
}

.floating-card p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

/* CARD POSITIONS */
.floating-card.top {
    top: -90px;
    right: 0;
}

.floating-card.middle {
    bottom: 0px;
    left: -40px;
}

.floating-card.bottom {
    bottom: -40px;
    right: -20px;
}


@media (max-width: 576px) {

    .hero {
        width: 100%;
        border-radius: 0;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text h2 {
        font-size: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
/* =========================
   WHY CHOOSE RESPONSIVE
========================= */
@media (max-width: 992px) {

    .why-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .services {
        justify-content: center;
        flex-wrap: wrap;
    }

    .why-right img {
        max-width: 100%;
        margin-top: 40px;
    }

    .floating-card {
        position: static;
        width: 100%;
        margin-top: 15px;
    }
}
/* =========================
   FEATURES RESPONSIVE
========================= */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-container {
        grid-template-columns: 1fr;
        padding: 25px;
    }
}
