.map-full-height {
    width: 100%;
    height: 100vh;
    border: 0;
    display: block;
}

/* Optional: fix mobile viewport issue */
@media (max-width: 991px) {
    .map-full-height {
        height: 100dvh;
    }
}

/* Main Card */
/* Main Card */
.route-search-card {
    width: 100%;
    max-width: 450px;
    background: #fbfcfc;
    border-radius: 0px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 15px 40px rgba(0,0,0,0.08), 0 5px 12px rgba(0,0,0,0.04);
     */
}

/* Top Border Gradient */
/* .route-search-card::before{
     content:"";
     position:absolute;
     top:0;
     left:0;
     width:100%;
     height:6px;
     background:linear-gradient(90deg,#ff5c72,#ff7b54);
}
 */
/* Heading */
.route-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 8px;
}

.route-subtitle {
    color: #7b8794;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Input Group */
.route-input-group {
    margin-bottom: 22px;
    position: relative;
}

.route-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2f3b52;
    margin-bottom: 10px;
}

/* Input Icon */
.route-input-group i {
    position: absolute;
    left: 18px;
    top: 49px;
    color: #ff5c72;
    font-size: 15px;
}

/* Input */
.route-input {
    width: 100%;
    height: 50px;
    border: 1px solid #dce3ec;
    border-radius: 16px;
    background: #f9fbff;
    padding: 0 18px 0 48px;
    font-size: 15px;
    transition: 0.3s ease;
}

.route-input:focus {
    outline: none;
    border-color: #ff5c72;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 92, 114, 0.12);
}

/* Reverse Button */
.swap-route {
    position: absolute;
    right: 10px;
    top: 155px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #ff5c72;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
}

.swap-route:hover {
    background: #e31e29;
    color: #fff;
    transform: rotate(180deg);
}

/* Search Button */
.route-search-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 18px;
    margin-top: 8px;
    background: linear-gradient(135deg, #e31e29, #ff2b37);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(255, 92, 114, 0.28);
    transition: 0.3s ease;
}

.route-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(255, 92, 114, 0.35);
}

/* Filter Button */
.route-filter-btn {
    width: 100%;
    height: 56px;
    margin-top: 18px;
    border-radius: 18px;
    border: 2px solid #e31e29;
    background: #fff;
    color: #ff5c72;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.route-filter-btn:hover {
    background: #e31e29;
    color: #fff;
}

/* Bottom Info */
.route-bottom {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #edf1f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.route-bottom span {
    font-size: 13px;
    color: #7d8795;
}

.route-tag {
    background: #eef3ff;
    color: #4f6fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 576px) {
    .route-search-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .route-title {
        font-size: 25px;
    }

    .swap-route {
        right: 25px;
        top: 188px;
        width: 46px;
        height: 46px;
    }
}