/* ===========================
   MYGO HOTEL SEARCH
=========================== */

.mygo-search-card{

    max-width:1200px;

    margin:50px auto;

    background:#ffffff;

    border-radius:18px;

    padding:35px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.mygo-search-card h2{

    margin-bottom:30px;

    text-align:center;

    font-size:30px;

    font-weight:700;

}

.mygo-row{

    display:flex;

    gap:20px;

    margin-bottom:20px;

    flex-wrap:wrap;

}

.mygo-field{

    flex:1;

    min-width:220px;

}

.mygo-field label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.mygo-field input,

.mygo-field select{

    width:100%;

    height:52px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 15px;

    font-size:15px;

    transition:.3s;

    background:#fff;

}

.mygo-field input:focus,

.mygo-field select:focus{

    outline:none;

    border-color:#0d6efd;

    box-shadow:0 0 8px rgba(13,110,253,.2);

}

.mygo-tags{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));

    gap:10px;

}

.mygo-tags label{

    display:flex;

    align-items:center;

    gap:8px;

    background:#f7f7f7;

    padding:10px;

    border-radius:8px;

}

.mygo-search-card button{

    width:100%;

    height:55px;

    background:#0d6efd;

    color:#fff;

    border:none;

    border-radius:12px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.mygo-search-card button:hover{

    background:#0b5ed7;

}

@media(max-width:768px){

    .mygo-row{

        flex-direction:column;

    }

}

.mygo-results {
    margin-top: 30px;
}

.mygo-results-title {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

/* GRID RESPONSIVE */
.mygo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* TABLET */
@media (max-width: 1024px) {
    .mygo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .mygo-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.mygo-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.mygo-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.mygo-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mygo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGE CITY */
.mygo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

/* BODY */
.mygo-card-body {
    padding: 15px;
}

.mygo-hotel-name {
    font-size: 18px;
    margin-bottom: 5px;
}

.mygo-stars {
    color: #f5b301;
    margin-bottom: 8px;
}

.mygo-room,
.mygo-boarding {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

/* PRICES */
.mygo-prices {
    margin: 10px 0;
}

.mygo-price-night {
    font-weight: bold;
    color: #1e7e34;
}

.mygo-price-total {
    font-size: 13px;
    color: #555;
}

/* ACTIONS */
.mygo-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.mygo-btn-primary {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.mygo-btn-outline {
    border: 1px solid #0073aa;
    color: #0073aa;
    padding: 6px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}

.mygo-detail-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mygo-detail-img {
    width: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.mygo-room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mygo-room-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
}