.season{
    padding:100px 8%;
}

.season-header{
    text-align:center;
    max-width:900px;
    margin:auto auto 70px;
}

.season-header span{
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
}

.season-header h2{
    font-size:42px;
    margin:15px 0;
}

.season-header h3{
    font-size:30px;
    color:#555;
    margin-bottom:20px;
}

.season-header p{
    line-height:1.8;
    color:#666;
}

.season-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top: 60px;
}

.season-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.season-card:hover{
    transform:translateY(-8px);
}

.season-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.season-content{
    padding:24px;
}

.season-content h3{
    font-size: 22px;
    margin-bottom:12px;
}

.season-content p{
    font-size: 15px;
    color:#666;
    margin-bottom:20px;
    line-height:1.7;
}

.season-content a{
    color:#0d6efd;
    text-decoration:none;
    font-weight:600;
}

.america{
    padding:100px 8%;
    background:#f8f9fb;
}

.america-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.america-header span{
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
}

.america-header h2{
    font-size:42px;
    margin:15px 0;
}

.america-header h3{
    font-size:28px;
    color:#555;
    margin-bottom:20px;
}

.america-header p{
    color:#666;
    line-height:1.8;
}

.america-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.america-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.america-card:hover{
    transform:translateY(-8px);
}

.america-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.america-content{
    padding:24px;
}

.america-content h3{
    margin-bottom:12px;
}

.america-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:18px;
}

.america-content a{
    color:#0d6efd;
    text-decoration:none;
    font-weight:600;
}

.new-hotels{
    padding:100px 8%;
}

.hotel-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.hotel-card{
    display: flex;
    flex-direction: column;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 25px rgba(0,0,0,.08);
    transition: scale .3s ease, box-shadow .3s ease;
    height: 100%;
}

.hotel-card:hover{
    transform:translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.hotel-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.hotel-tag{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    margin:18px 18px 0;
}

.hotel-body h3{
    font-size: 22px;
    line-height: 1.4;
    min-height: 63px;
    margin-bottom: 10px;
}

.hotel-btn{
    margin-top: auto;
    font-weight: 600;
    display:block;
    padding:14px;
    background:#0d6efd;
    color :#fff;
    text-align:center;
    border-radius:8px;
    text-decoration:none;
}

.hotel-more{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.btn-view{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border: 2px solid #0d6efd;
    border-radius: 50px;
    background: #fff;
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-view:hover{
    background: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13,110,253,.25);
}

.hotel-body{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding:22px;
    gap: 12px;
}

.hotel-location{
    min-height: 48px;
    color:#777;
    margin:12px 0;
    display:flex;
    align-items:center;
    gap:8px;
}

.hotel-location i{
    color:#0d6efd;
}

.hotel-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:18px 0;
}

.hotel-features span{
    display:flex;
    align-items:center;
    gap:6px;
    background:#f5f7fb;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    color:#555;
    transition: .3s;
}

.hotel-features span:hover {
    background: #0d6efd;
    color: #fff;
}

.hotel-features span:hover i {
    color: #fff;
}

.hotel-features i{
    color:#0d6efd;
    font-size:18px;
}

.hotel-price{
    margin-top:20px ;
    padding:10px 20px;
    font-size:18px;
}

.hotel-price small{
    display:block;
    color:#888;
    font-size:13px;
}

.hotel-price strong{
    font-size:28px;
    display: block;
    margin: 4px 0;
    color:#111;
}


.luxury{
    padding:100px 8%;
}

.luxury-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}

.luxury-header span{
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
}

.luxury-header h2{
    font-size:42px;
    margin:18px 0;
}

.luxury-header p{
    color:#666;
    line-height:1.8;
}

.luxury-item{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:100px;
}

.luxury-item.reverse{
    direction:rtl;
}

.luxury-item.reverse>*{
    direction:ltr;
}

.luxury-image{
    overflow:hidden;
    border-radius:20px;
}

.luxury-image img{
    width:100%;
    height:450px;
    object-fit:cover;
    transition:.5s;
}

.luxury-item:hover img{
    transform:scale(1.05);
}

.luxury-content span{
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
}

.luxury-content h3{
    font-size:36px;
    margin:20px 0;
}

.luxury-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.luxury-content a{
    display:inline-block;
    color:#0d6efd;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.luxury-content a:hover{
    transform:translateX(8px);
}